forked from huozhi/bunchee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentries.ts
485 lines (438 loc) · 13.9 KB
/
entries.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
import fs from 'fs'
import fsp from 'fs/promises'
import path, { basename, dirname, extname, join, posix } from 'path'
import { getExportTypeFromFile, type ParsedExportsInfo } from './exports'
import { PackageMetadata, type Entries, ExportPaths } from './types'
import { logger } from './logger'
import {
baseNameWithoutExtension,
getFileBasename,
getSourcePathFromExportPath,
isBinExportPath,
isTestFile,
resolveSourceFile,
} from './utils'
import {
availableExtensions,
BINARY_TAG,
SRC,
runtimeExportConventions,
specialExportConventions,
} from './constants'
import { relativify } from './lib/format'
// shared.ts -> ./shared
// shared.<export condition>.ts -> ./shared
// index.ts -> ./index
// index.development.ts -> ./index.development
function sourceFilenameToExportFullPath(filename: string) {
const baseName = baseNameWithoutExtension(filename)
let exportPath = baseName
return relativify(exportPath)
}
export async function collectEntriesFromParsedExports(
cwd: string,
parsedExportsInfo: ParsedExportsInfo,
sourceFile: string | undefined,
): Promise<Entries> {
const entries: Entries = {}
if (sourceFile) {
const defaultExport = parsedExportsInfo.get('./index')![0]
entries['./index'] = {
source: sourceFile,
name: '.',
export: {
default: defaultExport[0],
},
}
}
// Find source files
const { bins, exportsEntries } = await collectSourceEntriesFromExportPaths(
join(cwd, SRC),
parsedExportsInfo,
)
// A mapping between each export path and its related special export conditions,
// excluding the 'default' export condition.
// { './index' => Set('development', 'edge-light') }
const pathSpecialConditionsMap: Record<string, Set<string>> = {}
for (const [exportPath] of exportsEntries) {
const normalizedExportPath = stripSpecialCondition(exportPath)
if (!pathSpecialConditionsMap[normalizedExportPath]) {
pathSpecialConditionsMap[normalizedExportPath] = new Set()
}
const exportType = getExportTypeFromExportPath(exportPath)
if (exportType !== 'default') {
pathSpecialConditionsMap[normalizedExportPath].add(exportType)
}
}
// Traverse source files and try to match the entries
// Find exports from parsed exports info
// entryExportPath can be: './index', './index.development', './shared.edge-light', etc.
for (const [entryExportPath, sourceFilesMap] of exportsEntries) {
const normalizedExportPath = stripSpecialCondition(entryExportPath)
const entryExportPathType = getExportTypeFromExportPath(entryExportPath)
const outputExports = parsedExportsInfo.get(normalizedExportPath)
if (!outputExports) {
continue
}
for (const [outputPath, outputComposedExportType] of outputExports) {
// export type can be: default, development, react-server, etc.
const matchedExportType = getSpecialExportTypeFromComposedExportPath(
outputComposedExportType,
)
const specialSet = pathSpecialConditionsMap[normalizedExportPath]
const hasSpecialEntry = specialSet.has(matchedExportType)
const sourceFile =
sourceFilesMap[matchedExportType] || sourceFilesMap.default
if (!sourceFile) {
continue
}
if (!entries[entryExportPath]) {
entries[entryExportPath] = {
source: sourceFile,
name: normalizedExportPath,
export: {},
}
} else if (matchedExportType === entryExportPathType) {
entries[entryExportPath].source = sourceFile
}
// output exports match
if (
matchedExportType === entryExportPathType ||
(!hasSpecialEntry && matchedExportType !== 'default')
) {
const exportMap = entries[entryExportPath].export
exportMap[outputComposedExportType] = outputPath
}
}
}
// Handling binaries
for (const [exportPath, sourceFile] of bins) {
const outputExports = parsedExportsInfo.get(exportPath)
if (!outputExports) {
continue
}
for (const [outputPath, exportType] of outputExports) {
entries[exportPath] = {
source: sourceFile,
name: exportPath,
export: {
[exportType]: outputPath,
},
}
}
}
return entries
}
export async function collectBinaries(
entries: Entries,
pkg: PackageMetadata,
cwd: string,
) {
const binaryExports = pkg.bin
if (binaryExports) {
// binDistPaths: [ [ 'bin1', './dist/bin1.js'], [ 'bin2', './dist/bin2.js'] ]
const binPairs =
typeof binaryExports === 'string'
? [['bin', binaryExports]]
: Object.keys(binaryExports).map((key) => [
join('bin', key),
binaryExports[key],
])
const binExportPaths = binPairs.reduce((acc, [binName, binDistPath]) => {
const exportType = getExportTypeFromFile(binDistPath, pkg.type)
acc[binName] = {
[exportType]: binDistPath,
}
return acc
}, {} as ExportPaths)
for (const [binName] of binPairs) {
const source = await getSourcePathFromExportPath(cwd, binName, BINARY_TAG)
if (!source) {
logger.warn(`Cannot find source file for ${binName}`)
continue
}
const binEntryPath = await resolveSourceFile(cwd, source)
entries[binName] = {
source: binEntryPath,
name: binName,
export: binExportPaths[binName],
}
}
}
}
// ./index -> default
// ./index.development -> development
// ./index.react-server -> react-server
function getExportTypeFromExportPath(exportPath: string): string {
// Skip the first two segments: `.` and `index`
const exportTypes = exportPath.split('.').slice(2)
return getExportTypeFromExportTypesArray(exportTypes)
}
export function getSpecialExportTypeFromComposedExportPath(
composedExportType: string,
): string {
const exportTypes = composedExportType.split('.')
for (const exportType of exportTypes) {
if (specialExportConventions.has(exportType)) {
return exportType
}
}
return 'default'
}
function getExportTypeFromExportTypesArray(types: string[]): string {
let exportType = 'default'
new Set(types).forEach((value) => {
if (specialExportConventions.has(value)) {
exportType = value
} else if (value === 'import' || value === 'require' || value === 'types') {
exportType = value
}
})
return exportType
}
// ./index -> .
// ./index.development -> .
// ./index.react-server -> .
// ./shared -> ./shared
// ./shared.development -> ./shared
// $binary -> $binary
// $binary/index -> $binary
// $binary/foo -> $binary/foo
export function normalizeExportPath(exportPath: string): string {
if (exportPath.startsWith(BINARY_TAG)) {
if (exportPath === `${BINARY_TAG}/index`) {
exportPath = BINARY_TAG
}
return exportPath
}
const baseName = exportPath.split('.').slice(0, 2).join('.')
if (baseName === './index') {
return '.'
}
return baseName
}
// ./index.react-server -> ./index
function stripSpecialCondition(exportPath: string): string {
return exportPath.split('.').slice(0, 2).join('.')
}
export async function collectSourceEntriesByExportPath(
sourceFolderPath: string,
originalSubpath: string,
bins: Map<string, string>,
exportsEntries: Map<string, Record<string, string>>,
) {
const isBinaryPath = isBinExportPath(originalSubpath)
const subpath = originalSubpath.replace(BINARY_TAG, 'bin')
const absoluteDirPath = path.join(sourceFolderPath, subpath)
const isDirectory = fs.existsSync(absoluteDirPath)
? (await fsp.stat(absoluteDirPath)).isDirectory()
: false
if (isDirectory) {
if (isBinaryPath) {
const binDirentList = await fsp.readdir(absoluteDirPath, {
withFileTypes: true,
})
for (const binDirent of binDirentList) {
if (binDirent.isFile()) {
const binFileAbsolutePath = path.join(absoluteDirPath, binDirent.name)
if (fs.existsSync(binFileAbsolutePath)) {
bins.set(normalizeExportPath(originalSubpath), binFileAbsolutePath)
}
}
}
} else {
// Search folder/index.<ext> convention entries
for (const extension of availableExtensions) {
const indexAbsoluteFile = path.join(
absoluteDirPath,
`index.${extension}`,
)
// Search folder/index.<special type>.<ext> convention entries
for (const specialExportType of runtimeExportConventions) {
const indexSpecialAbsoluteFile = path.join(
absoluteDirPath,
`index.${specialExportType}.${extension}`,
)
if (fs.existsSync(indexSpecialAbsoluteFile)) {
// Add special export path
// { ./<export path>.<special cond>: { <special cond>: 'index.<special cond>.<ext>' } }
const exportPath = relativify(subpath)
const specialExportPath = exportPath + '.' + specialExportType
const sourceFilesMap = exportsEntries.get(specialExportPath) || {}
sourceFilesMap[specialExportType] = indexSpecialAbsoluteFile
exportsEntries.set(specialExportPath, sourceFilesMap)
}
}
if (
fs.existsSync(indexAbsoluteFile) &&
!isTestFile(indexAbsoluteFile)
) {
const exportPath = relativify(subpath)
const sourceFilesMap = exportsEntries.get(exportPath) || {}
const exportType = getExportTypeFromExportPath(exportPath)
sourceFilesMap[exportType] = indexAbsoluteFile
exportsEntries.set(exportPath, sourceFilesMap)
break
}
}
}
} else {
// subpath could be a file
const dirName = dirname(subpath)
const baseName = basename(subpath)
// Read current file's directory
const dirPath = path.join(sourceFolderPath, dirName)
if (!fs.existsSync(dirPath)) {
return
}
const dirents = await fsp.readdir(dirPath, {
withFileTypes: true,
})
for (const dirent of dirents) {
// index.development.js -> index.development
const direntBaseName = baseNameWithoutExtension(dirent.name)
const ext = extname(dirent.name).slice(1)
if (
!dirent.isFile() ||
direntBaseName !== baseName ||
!availableExtensions.has(ext)
) {
continue
}
if (isTestFile(dirent.name)) {
continue
}
const sourceFileAbsolutePath = path.join(dirPath, dirent.name)
if (isBinaryPath) {
bins.set(originalSubpath, sourceFileAbsolutePath)
} else {
let sourceFilesMap = exportsEntries.get(originalSubpath) || {}
const exportType = getExportTypeFromExportPath(originalSubpath)
sourceFilesMap[exportType] = sourceFileAbsolutePath
if (specialExportConventions.has(exportType)) {
// e.g. ./foo/index.react-server -> ./foo/index
const fallbackExportPath =
sourceFilenameToExportFullPath(originalSubpath)
const fallbackSourceFilesMap =
exportsEntries.get(fallbackExportPath) || {}
sourceFilesMap = {
...fallbackSourceFilesMap,
...sourceFilesMap,
}
}
exportsEntries.set(originalSubpath, sourceFilesMap)
}
}
}
}
/**
* exportsEntries {
* "./index" => {
* "development" => source"
* "react-server" => "source"
* },
* "./index.react-server" => {
* "development" => source"
* "react-server" => "source"
* }
* }
*/
export async function collectSourceEntriesFromExportPaths(
sourceFolderPath: string,
parsedExportsInfo: ParsedExportsInfo,
) {
const bins = new Map<string, string>()
const exportsEntries = new Map<string, Record<string, string>>()
for (const [exportPath, exportInfo] of parsedExportsInfo.entries()) {
const specialConditions = new Set<string>()
for (const [_, composedExportType] of exportInfo) {
const specialExportType =
getSpecialExportTypeFromComposedExportPath(composedExportType)
if (specialExportType !== 'default') {
specialConditions.add(specialExportType)
}
}
await collectSourceEntriesByExportPath(
sourceFolderPath,
exportPath,
bins,
exportsEntries,
)
for (const specialCondition of specialConditions) {
await collectSourceEntriesByExportPath(
sourceFolderPath,
exportPath + '.' + specialCondition,
bins,
exportsEntries,
)
}
}
return {
bins,
exportsEntries,
}
}
// For `prepare`
export async function collectSourceEntries(sourceFolderPath: string) {
const bins = new Map<string, string>()
const exportsEntries = new Map<string, Record<string, string>>()
if (!fs.existsSync(sourceFolderPath)) {
return {
bins,
exportsEntries,
}
}
const entryFileDirentList = await fsp.readdir(sourceFolderPath, {
withFileTypes: true,
})
// Collect source files for `exports` field
for (const dirent of entryFileDirentList) {
if (getFileBasename(dirent.name) === 'bin') {
continue
}
const exportPath = sourceFilenameToExportFullPath(dirent.name)
await collectSourceEntriesByExportPath(
sourceFolderPath,
exportPath,
bins,
exportsEntries,
)
}
// Collect source files for `bin` field
const binDirent = entryFileDirentList.find(
(dirent) => getFileBasename(dirent.name) === 'bin',
)
if (binDirent) {
if (binDirent.isDirectory()) {
const binDirentList = await fsp.readdir(
path.join(sourceFolderPath, binDirent.name),
{
withFileTypes: true,
},
)
for (const binDirent of binDirentList) {
const binExportPath = posix.join(
BINARY_TAG,
getFileBasename(binDirent.name),
)
await collectSourceEntriesByExportPath(
sourceFolderPath,
binExportPath,
bins,
exportsEntries,
)
}
} else {
await collectSourceEntriesByExportPath(
sourceFolderPath,
BINARY_TAG,
bins,
exportsEntries,
)
}
}
return {
bins,
exportsEntries,
}
}