forked from vitejs/vite
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathresolve.ts
1306 lines (1178 loc) · 39.5 KB
/
resolve.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import fs from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import colors from 'picocolors'
import type { PartialResolvedId, RolldownPlugin } from 'rolldown'
import { exports, imports } from 'resolve.exports'
import { hasESMSyntax } from 'mlly'
import type { Plugin } from '../plugin'
import {
CLIENT_ENTRY,
DEP_VERSION_RE,
DEV_PROD_CONDITION,
ENV_ENTRY,
FS_PREFIX,
SPECIAL_QUERY_RE,
} from '../constants'
import {
bareImportRE,
createDebugger,
deepImportRE,
fsPathFromId,
getNpmPackageName,
injectQuery,
isBuiltin,
isDataUrl,
isExternalUrl,
isInNodeModules,
isNonDriveRelativeAbsolutePath,
isObject,
isOptimizable,
isTsRequest,
normalizePath,
safeRealpathSync,
tryStatSync,
} from '../utils'
import { optimizedDepInfoFromFile, optimizedDepInfoFromId } from '../optimizer'
import type { DepsOptimizer } from '../optimizer'
import type { SSROptions } from '..'
import type { PackageCache, PackageData } from '../packages'
import { canExternalizeFile, shouldExternalize } from '../external'
import {
findNearestMainPackageData,
findNearestPackageData,
loadPackageData,
resolvePackageData,
} from '../packages'
import {
cleanUrl,
isWindows,
slash,
splitFileAndPostfix,
withTrailingSlash,
} from '../../shared/utils'
const normalizedClientEntry = normalizePath(CLIENT_ENTRY)
const normalizedEnvEntry = normalizePath(ENV_ENTRY)
const ERR_RESOLVE_PACKAGE_ENTRY_FAIL = 'ERR_RESOLVE_PACKAGE_ENTRY_FAIL'
// special id for paths marked with browser: false
// https://github.com/defunctzombie/package-browser-field-spec#ignore-a-module
export const browserExternalId = '__vite-browser-external'
// special id for packages that are optional peer deps
export const optionalPeerDepId = '__vite-optional-peer-dep'
const subpathImportsPrefix = '#'
const startsWithWordCharRE = /^\w/
const debug = createDebugger('vite:resolve-details', {
onlyWhenFocused: true,
})
export interface EnvironmentResolveOptions {
/**
* @default ['browser', 'module', 'jsnext:main', 'jsnext']
*/
mainFields?: string[]
conditions?: string[]
externalConditions?: string[]
/**
* @default ['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']
*/
extensions?: string[]
dedupe?: string[]
// TODO: better abstraction that works for the client environment too?
/**
* Prevent listed dependencies from being externalized and will get bundled in build.
* Only works in server environments for now. Previously this was `ssr.noExternal`.
* @experimental
*/
noExternal?: string | RegExp | (string | RegExp)[] | true
/**
* Externalize the given dependencies and their transitive dependencies.
* Only works in server environments for now. Previously this was `ssr.external`.
* @experimental
*/
external?: string[] | true
}
export interface ResolveOptions extends EnvironmentResolveOptions {
/**
* @default false
*/
preserveSymlinks?: boolean
}
interface ResolvePluginOptions {
root: string
isBuild: boolean
isProduction: boolean
packageCache?: PackageCache
/**
* src code mode also attempts the following:
* - resolving /xxx as URLs
* - resolving bare imports from optimized deps
*/
asSrc?: boolean
tryIndex?: boolean
tryPrefix?: string
preferRelative?: boolean
isRequire?: boolean
// #3040
// when the importer is a ts module,
// if the specifier requests a non-existent `.js/jsx/mjs/cjs` file,
// should also try import from `.ts/tsx/mts/cts` source file as fallback.
isFromTsImporter?: boolean
// True when resolving during the scan phase to discover dependencies
scan?: boolean
/**
* Optimize deps during dev, defaults to false // TODO: Review default
* @internal
*/
optimizeDeps?: boolean
/**
* Externalize using `resolve.external` and `resolve.noExternal` when running a build in
* a server environment. Defaults to false (only for createResolver)
* @internal
*/
externalize?: boolean
/**
* Previous deps optimizer logic
* @internal
* @deprecated
*/
getDepsOptimizer?: (ssr: boolean) => DepsOptimizer | undefined
/**
* Externalize logic for SSR builds
* @internal
* @deprecated
*/
shouldExternalize?: (id: string, importer?: string) => boolean | undefined
/**
* Set by createResolver, we only care about the resolved id. moduleSideEffects
* and other fields are discarded so we can avoid computing them.
* @internal
*/
idOnly?: boolean
/**
* @deprecated environment.config are used instead
*/
ssrConfig?: SSROptions
}
export interface InternalResolveOptions
extends Required<ResolveOptions>,
ResolvePluginOptions {}
// Defined ResolveOptions are used to overwrite the values for all environments
// It is used when creating custom resolvers (for CSS, scanning, etc)
export interface ResolvePluginOptionsWithOverrides
extends ResolveOptions,
ResolvePluginOptions {}
export function filteredResolvePlugin(
resolveOptions: ResolvePluginOptionsWithOverrides,
): RolldownPlugin {
const originalPlugin = resolvePlugin(resolveOptions)
return {
name: 'vite:resolve',
options(option) {
option.resolve ??= {}
option.resolve.extensions = this.environment.config.resolve.extensions
option.resolve.extensionAlias = {
'.js': ['.ts', '.tsx', '.js'],
'.jsx': ['.ts', '.tsx', '.jsx'],
'.mjs': ['.mts', '.mjs'],
'.cjs': ['.cts', '.cjs'],
}
},
resolveId: {
filter: {
id: {
exclude: [
// relative paths without query
/^\.\.?[/\\][^?]+$/,
/^(?:\0|\/?virtual:)/,
],
},
},
// @ts-expect-error the options is incompatible
handler: originalPlugin.resolveId!,
},
load: originalPlugin.load,
}
}
export function resolvePlugin(
resolveOptions: ResolvePluginOptionsWithOverrides,
): Plugin {
const {
root,
isProduction,
isBuild,
asSrc,
preferRelative = false,
} = resolveOptions
// In unix systems, absolute paths inside root first needs to be checked as an
// absolute URL (/root/root/path-to-file) resulting in failed checks before falling
// back to checking the path as absolute. If /root/root isn't a valid path, we can
// avoid these checks. Absolute paths inside root are common in user code as many
// paths are resolved by the user. For example for an alias.
const rootInRoot = tryStatSync(path.join(root, root))?.isDirectory() ?? false
return {
name: 'vite:resolve',
async resolveId(id, importer, resolveOpts) {
if (
id[0] === '\0' ||
id.startsWith('virtual:') ||
// When injected directly in html/client code
id.startsWith('/virtual:')
) {
return
}
// The resolve plugin is used for createIdResolver and the depsOptimizer should be
// disabled in that case, so deps optimization is opt-in when creating the plugin.
const depsOptimizer =
resolveOptions.optimizeDeps && this.environment.mode === 'dev'
? this.environment.depsOptimizer
: undefined
if (id.startsWith(browserExternalId)) {
return id
}
const isRequire: boolean = resolveOpts.kind === 'require-call'
const currentEnvironmentOptions = this.environment.config
const options: InternalResolveOptions = {
isRequire,
...currentEnvironmentOptions.resolve,
...resolveOptions, // plugin options + resolve options overrides
scan: resolveOpts?.scan ?? resolveOptions.scan,
}
const resolvedImports = resolveSubpathImports(id, importer, options)
if (resolvedImports) {
id = resolvedImports
if (resolveOpts.custom?.['vite:import-glob']?.isSubImportsPattern) {
return normalizePath(path.join(root, id))
}
}
if (importer) {
if (
isTsRequest(importer) ||
resolveOpts.custom?.depScan?.loader?.startsWith('ts')
) {
options.isFromTsImporter = true
} else {
const moduleLang = this.getModuleInfo(importer)?.meta?.vite?.lang
options.isFromTsImporter = moduleLang && isTsRequest(`.${moduleLang}`)
}
}
let res: string | PartialResolvedId | undefined
// resolve pre-bundled deps requests, these could be resolved by
// tryFileResolve or /fs/ resolution but these files may not yet
// exists if we are in the middle of a deps re-processing
if (asSrc && depsOptimizer?.isOptimizedDepUrl(id)) {
const optimizedPath = id.startsWith(FS_PREFIX)
? fsPathFromId(id)
: normalizePath(path.resolve(root, id.slice(1)))
return optimizedPath
}
// explicit fs paths that starts with /@fs/*
if (asSrc && id.startsWith(FS_PREFIX)) {
res = fsPathFromId(id)
// We don't need to resolve these paths since they are already resolved
// always return here even if res doesn't exist since /@fs/ is explicit
// if the file doesn't exist it should be a 404.
debug?.(`[@fs] ${colors.cyan(id)} -> ${colors.dim(res)}`)
return ensureVersionQuery(res, id, options, depsOptimizer)
}
// URL
// /foo -> /fs-root/foo
if (
asSrc &&
id[0] === '/' &&
(rootInRoot || !id.startsWith(withTrailingSlash(root)))
) {
const fsPath = path.resolve(root, id.slice(1))
if ((res = tryFsResolve(fsPath, options))) {
debug?.(`[url] ${colors.cyan(id)} -> ${colors.dim(res)}`)
return ensureVersionQuery(res, id, options, depsOptimizer)
}
}
// relative
if (
id[0] === '.' ||
((preferRelative || importer?.endsWith('.html')) &&
startsWithWordCharRE.test(id))
) {
const basedir = importer ? path.dirname(importer) : process.cwd()
const fsPath = path.resolve(basedir, id)
// handle browser field mapping for relative imports
const normalizedFsPath = normalizePath(fsPath)
if (depsOptimizer?.isOptimizedDepFile(normalizedFsPath)) {
// Optimized files could not yet exist in disk, resolve to the full path
// Inject the current browserHash version if the path doesn't have one
if (!options.isBuild && !DEP_VERSION_RE.test(normalizedFsPath)) {
const browserHash = optimizedDepInfoFromFile(
depsOptimizer.metadata,
normalizedFsPath,
)?.browserHash
if (browserHash) {
return injectQuery(normalizedFsPath, `v=${browserHash}`)
}
}
return normalizedFsPath
}
if (
options.mainFields.includes('browser') &&
(res = tryResolveBrowserMapping(fsPath, importer, options, true))
) {
return res
}
if ((res = tryFsResolve(fsPath, options))) {
res = ensureVersionQuery(res, id, options, depsOptimizer)
debug?.(`[relative] ${colors.cyan(id)} -> ${colors.dim(res)}`)
if (!options.idOnly && !options.scan && options.isBuild) {
const resPkg = findNearestPackageData(
path.dirname(res),
options.packageCache,
)
if (resPkg) {
return {
id: res,
moduleSideEffects: resPkg.hasSideEffects(res),
}
}
}
return res
}
}
// file url as path
if (id.startsWith('file://')) {
id = fileURLToPath(id)
}
// drive relative fs paths (only windows)
if (isWindows && id[0] === '/') {
const basedir = importer ? path.dirname(importer) : process.cwd()
const fsPath = path.resolve(basedir, id)
if ((res = tryFsResolve(fsPath, options))) {
debug?.(`[drive-relative] ${colors.cyan(id)} -> ${colors.dim(res)}`)
return ensureVersionQuery(res, id, options, depsOptimizer)
}
}
// absolute fs paths
if (
isNonDriveRelativeAbsolutePath(id) &&
(res = tryFsResolve(id, options))
) {
debug?.(`[fs] ${colors.cyan(id)} -> ${colors.dim(res)}`)
return ensureVersionQuery(res, id, options, depsOptimizer)
}
// external
if (isExternalUrl(id)) {
return options.idOnly ? id : { id, external: true }
}
// data uri: pass through (this only happens during build and will be
// handled by dedicated plugin)
if (isDataUrl(id)) {
return null
}
// bare package imports, perform node resolve
if (bareImportRE.test(id)) {
const external =
options.externalize &&
options.isBuild &&
currentEnvironmentOptions.consumer === 'server' &&
shouldExternalize(this.environment, id, importer)
if (
!external &&
asSrc &&
depsOptimizer &&
!options.scan &&
(res = await tryOptimizedResolve(
depsOptimizer,
id,
importer,
options.preserveSymlinks,
options.packageCache,
))
) {
return res
}
if (
options.mainFields.includes('browser') &&
(res = tryResolveBrowserMapping(
id,
importer,
options,
false,
external,
))
) {
return res
}
if (
(res = tryNodeResolve(id, importer, options, depsOptimizer, external))
) {
return res
}
// node built-ins.
// externalize if building for a node compatible environment, otherwise redirect to empty module
if (isBuiltin(id)) {
if (currentEnvironmentOptions.consumer === 'server') {
if (
options.noExternal === true &&
// if both noExternal and external are true, noExternal will take the higher priority and bundle it.
// only if the id is explicitly listed in external, we will externalize it and skip this error.
(options.external === true || !options.external.includes(id))
) {
let message = `Cannot bundle Node.js built-in "${id}"`
if (importer) {
message += ` imported from "${path.relative(
process.cwd(),
importer,
)}"`
}
message += `. Consider disabling environments.${this.environment.name}.noExternal or remove the built-in dependency.`
this.error(message)
}
return options.idOnly
? id
: { id, external: true, moduleSideEffects: false }
} else {
if (!asSrc) {
debug?.(
`externalized node built-in "${id}" to empty module. ` +
`(imported by: ${colors.white(colors.dim(importer))})`,
)
} else if (isProduction) {
this.warn(
`Module "${id}" has been externalized for browser compatibility, imported by "${importer}". ` +
`See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.`,
)
}
return isProduction
? browserExternalId
: `${browserExternalId}:${id}`
}
}
}
debug?.(`[fallthrough] ${colors.dim(id)}`)
},
load(id) {
if (id.startsWith(browserExternalId)) {
if (isBuild) {
if (isProduction) {
// rolldown treats missing export as an error, and will break build.
// So use cjs to avoid it.
return `module.exports = {}`
} else {
id = id.slice(browserExternalId.length + 1)
// rolldown uses esbuild interop helper, so copy the proxy module from https://github.com/vitejs/vite/blob/main/packages/vite/src/node/optimizer/esbuildDepPlugin.ts#L259
return `\
module.exports = Object.create(new Proxy({}, {
get(_, key) {
if (
key !== '__esModule' &&
key !== '__proto__' &&
key !== 'constructor' &&
key !== 'splice'
) {
throw new Error(\`Module "${id}" has been externalized for browser compatibility. Cannot access "${id}.\${key}" in client code. See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.\`)
}
}
}))`
}
} else {
// in dev, needs to return esm
if (isProduction) {
return `export default {}`
} else {
id = id.slice(browserExternalId.length + 1)
return `\
export default new Proxy({}, {
get(_, key) {
throw new Error(\`Module "${id}" has been externalized for browser compatibility. Cannot access "${id}.\${key}" in client code. See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.\`)
}
})`
}
}
}
if (id.startsWith(optionalPeerDepId)) {
if (isProduction) {
return `export default {}`
} else {
const [, peerDep, parentDep] = id.split(':')
return `throw new Error(\`Could not resolve "${peerDep}" imported by "${parentDep}". Is it installed?\`)`
}
}
},
}
}
function resolveSubpathImports(
id: string,
importer: string | undefined,
options: InternalResolveOptions,
) {
if (!importer || !id.startsWith(subpathImportsPrefix)) return
const basedir = path.dirname(importer)
const pkgData = findNearestPackageData(basedir, options.packageCache)
if (!pkgData) return
let { file: idWithoutPostfix, postfix } = splitFileAndPostfix(id.slice(1))
idWithoutPostfix = '#' + idWithoutPostfix
let importsPath = resolveExportsOrImports(
pkgData.data,
idWithoutPostfix,
options,
'imports',
)
if (importsPath?.[0] === '.') {
importsPath = path.relative(basedir, path.join(pkgData.dir, importsPath))
if (importsPath[0] !== '.') {
importsPath = `./${importsPath}`
}
}
return importsPath + postfix
}
function ensureVersionQuery(
resolved: string,
id: string,
options: InternalResolveOptions,
depsOptimizer?: DepsOptimizer,
): string {
if (
!options.isBuild &&
!options.scan &&
depsOptimizer &&
!(resolved === normalizedClientEntry || resolved === normalizedEnvEntry)
) {
// Ensure that direct imports of node_modules have the same version query
// as if they would have been imported through a bare import
// Use the original id to do the check as the resolved id may be the real
// file path after symlinks resolution
const isNodeModule = isInNodeModules(id) || isInNodeModules(resolved)
if (isNodeModule && !DEP_VERSION_RE.test(resolved)) {
const versionHash = depsOptimizer.metadata.browserHash
if (versionHash && isOptimizable(resolved, depsOptimizer.options)) {
resolved = injectQuery(resolved, `v=${versionHash}`)
}
}
}
return resolved
}
export function tryFsResolve(
fsPath: string,
options: InternalResolveOptions,
tryIndex = true,
skipPackageJson = false,
): string | undefined {
// Dependencies like es5-ext use `#` in their paths. We don't support `#` in user
// source code so we only need to perform the check for dependencies.
// We don't support `?` in node_modules paths, so we only need to check in this branch.
const hashIndex = fsPath.indexOf('#')
if (hashIndex >= 0 && isInNodeModules(fsPath)) {
const queryIndex = fsPath.indexOf('?')
// We only need to check foo#bar?baz and foo#bar, ignore foo?bar#baz
if (queryIndex < 0 || queryIndex > hashIndex) {
const file = queryIndex > hashIndex ? fsPath.slice(0, queryIndex) : fsPath
const res = tryCleanFsResolve(file, options, tryIndex, skipPackageJson)
if (res) return res + fsPath.slice(file.length)
}
}
const { file, postfix } = splitFileAndPostfix(fsPath)
const res = tryCleanFsResolve(file, options, tryIndex, skipPackageJson)
if (res) return res + postfix
}
const knownTsOutputRE = /\.(?:js|mjs|cjs|jsx)$/
const isPossibleTsOutput = (url: string): boolean => knownTsOutputRE.test(url)
function tryCleanFsResolve(
file: string,
options: InternalResolveOptions,
tryIndex = true,
skipPackageJson = false,
): string | undefined {
const { tryPrefix, extensions, preserveSymlinks } = options
// Optimization to get the real type or file type (directory, file, other)
const fileResult = tryResolveRealFileOrType(file, options.preserveSymlinks)
if (fileResult?.path) return fileResult.path
let res: string | undefined
// If path.dirname is a valid directory, try extensions and ts resolution logic
const possibleJsToTs = options.isFromTsImporter && isPossibleTsOutput(file)
if (possibleJsToTs || options.extensions.length || tryPrefix) {
const dirPath = path.dirname(file)
if (isDirectory(dirPath)) {
if (possibleJsToTs) {
// try resolve .js, .mjs, .cjs or .jsx import to typescript file
const fileExt = path.extname(file)
const fileName = file.slice(0, -fileExt.length)
if (
(res = tryResolveRealFile(
fileName + fileExt.replace('js', 'ts'),
preserveSymlinks,
))
)
return res
// for .js, also try .tsx
if (
fileExt === '.js' &&
(res = tryResolveRealFile(fileName + '.tsx', preserveSymlinks))
)
return res
}
if (
(res = tryResolveRealFileWithExtensions(
file,
extensions,
preserveSymlinks,
))
)
return res
if (tryPrefix) {
const prefixed = `${dirPath}/${options.tryPrefix}${path.basename(file)}`
if ((res = tryResolveRealFile(prefixed, preserveSymlinks))) return res
if (
(res = tryResolveRealFileWithExtensions(
prefixed,
extensions,
preserveSymlinks,
))
)
return res
}
}
}
if (tryIndex && fileResult?.type === 'directory') {
// Path points to a directory, check for package.json and entry and /index file
const dirPath = file
if (!skipPackageJson) {
let pkgPath = `${dirPath}/package.json`
try {
if (fs.existsSync(pkgPath)) {
if (!options.preserveSymlinks) {
pkgPath = safeRealpathSync(pkgPath)
}
// path points to a node package
const pkg = loadPackageData(pkgPath)
return resolvePackageEntry(dirPath, pkg, options)
}
} catch (e) {
// This check is best effort, so if an entry is not found, skip error for now
if (e.code !== ERR_RESOLVE_PACKAGE_ENTRY_FAIL && e.code !== 'ENOENT')
throw e
}
}
if (
(res = tryResolveRealFileWithExtensions(
`${dirPath}/index`,
extensions,
preserveSymlinks,
))
)
return res
if (tryPrefix) {
if (
(res = tryResolveRealFileWithExtensions(
`${dirPath}/${options.tryPrefix}index`,
extensions,
preserveSymlinks,
))
)
return res
}
}
}
export function tryNodeResolve(
id: string,
importer: string | null | undefined,
options: InternalResolveOptions,
depsOptimizer?: DepsOptimizer,
externalize?: boolean,
): PartialResolvedId | undefined {
const { root, dedupe, isBuild, preserveSymlinks, packageCache } = options
// check for deep import, e.g. "my-lib/foo"
const deepMatch = deepImportRE.exec(id)
// package name doesn't include postfixes
// trim them to support importing package with queries (e.g. `import css from 'normalize.css?inline'`)
const pkgId = deepMatch ? deepMatch[1] || deepMatch[2] : cleanUrl(id)
let basedir: string
if (dedupe?.includes(pkgId)) {
basedir = root
} else if (
importer &&
path.isAbsolute(importer) &&
// css processing appends `*` for importer
(importer[importer.length - 1] === '*' || fs.existsSync(cleanUrl(importer)))
) {
basedir = path.dirname(importer)
} else {
basedir = root
}
let selfPkg = null
if (!isBuiltin(id) && !id.includes('\0') && bareImportRE.test(id)) {
// check if it's a self reference dep.
const selfPackageData = findNearestPackageData(basedir, packageCache)
selfPkg =
selfPackageData?.data.exports && selfPackageData?.data.name === pkgId
? selfPackageData
: null
}
const pkg =
selfPkg ||
resolvePackageData(pkgId, basedir, preserveSymlinks, packageCache)
if (!pkg) {
// if import can't be found, check if it's an optional peer dep.
// if so, we can resolve to a special id that errors only when imported.
if (
basedir !== root && // root has no peer dep
!isBuiltin(id) &&
!id.includes('\0') &&
bareImportRE.test(id)
) {
const mainPkg = findNearestMainPackageData(basedir, packageCache)?.data
if (mainPkg) {
const pkgName = getNpmPackageName(id)
if (
pkgName != null &&
mainPkg.peerDependencies?.[pkgName] &&
mainPkg.peerDependenciesMeta?.[pkgName]?.optional
) {
return {
id: `${optionalPeerDepId}:${id}:${mainPkg.name}`,
}
}
}
}
return
}
const resolveId = deepMatch ? resolveDeepImport : resolvePackageEntry
const unresolvedId = deepMatch ? '.' + id.slice(pkgId.length) : id
let resolved = resolveId(unresolvedId, pkg, options)
if (!resolved) {
return
}
const processResult = (resolved: PartialResolvedId) => {
if (!externalize) {
return resolved
}
if (!canExternalizeFile(resolved.id)) {
return resolved
}
let resolvedId = id
if (
deepMatch &&
!pkg?.data.exports &&
path.extname(id) !== path.extname(resolved.id)
) {
// id date-fns/locale
// resolve.id ...date-fns/esm/locale/index.js
const index = resolved.id.indexOf(id)
if (index > -1) {
resolvedId = resolved.id.slice(index)
debug?.(
`[processResult] ${colors.cyan(id)} -> ${colors.dim(resolvedId)}`,
)
}
}
return { ...resolved, id: resolvedId, external: true }
}
if (!options.idOnly && ((!options.scan && isBuild) || externalize)) {
// Resolve package side effects for build so that rollup can better
// perform tree-shaking
return processResult({
id: resolved,
moduleSideEffects: pkg.hasSideEffects(resolved),
})
}
if (
!isInNodeModules(resolved) || // linked
!depsOptimizer || // resolving before listening to the server
options.scan // initial esbuild scan phase
) {
return { id: resolved }
}
// if we reach here, it's a valid dep import that hasn't been optimized.
const isJsType = isOptimizable(resolved, depsOptimizer.options)
const exclude = depsOptimizer.options.exclude
const skipOptimization =
depsOptimizer.options.noDiscovery ||
!isJsType ||
(importer && isInNodeModules(importer)) ||
exclude?.includes(pkgId) ||
exclude?.includes(id) ||
SPECIAL_QUERY_RE.test(resolved)
if (skipOptimization) {
// excluded from optimization
// Inject a version query to npm deps so that the browser
// can cache it without re-validation, but only do so for known js types.
// otherwise we may introduce duplicated modules for externalized files
// from pre-bundled deps.
const versionHash = depsOptimizer.metadata.browserHash
if (versionHash && isJsType) {
resolved = injectQuery(resolved, `v=${versionHash}`)
}
} else {
// this is a missing import, queue optimize-deps re-run and
// get a resolved its optimized info
const optimizedInfo = depsOptimizer.registerMissingImport(id, resolved)
resolved = depsOptimizer.getOptimizedDepId(optimizedInfo)
}
return { id: resolved }
}
export async function tryOptimizedResolve(
depsOptimizer: DepsOptimizer,
id: string,
importer?: string,
preserveSymlinks?: boolean,
packageCache?: PackageCache,
): Promise<string | undefined> {
// TODO: we need to wait until scanning is done here as this function
// is used in the preAliasPlugin to decide if an aliased dep is optimized,
// and avoid replacing the bare import with the resolved path.
// We should be able to remove this in the future
await depsOptimizer.scanProcessing
const metadata = depsOptimizer.metadata
const depInfo = optimizedDepInfoFromId(metadata, id)
if (depInfo) {
return depsOptimizer.getOptimizedDepId(depInfo)
}
if (!importer) return
// further check if id is imported by nested dependency
let idPkgDir: string | undefined
const nestedIdMatch = `> ${id}`
for (const optimizedData of metadata.depInfoList) {
if (!optimizedData.src) continue // Ignore chunks
// check where "foo" is nested in "my-lib > foo"
if (!optimizedData.id.endsWith(nestedIdMatch)) continue
// lazily initialize idPkgDir
if (idPkgDir == null) {
const pkgName = getNpmPackageName(id)
if (!pkgName) break
idPkgDir = resolvePackageData(
pkgName,
importer,
preserveSymlinks,
packageCache,
)?.dir
// if still null, it likely means that this id isn't a dep for importer.
// break to bail early
if (idPkgDir == null) break
idPkgDir = normalizePath(idPkgDir)
}
// match by src to correctly identify if id belongs to nested dependency
if (optimizedData.src.startsWith(withTrailingSlash(idPkgDir))) {
return depsOptimizer.getOptimizedDepId(optimizedData)
}
}
}
export function resolvePackageEntry(
id: string,
{ dir, data, setResolvedCache, getResolvedCache }: PackageData,
options: InternalResolveOptions,
): string | undefined {
const { file: idWithoutPostfix, postfix } = splitFileAndPostfix(id)
const cached = getResolvedCache('.', options)
if (cached) {
return cached + postfix
}
try {
let entryPoint: string | undefined
// resolve exports field with highest priority
// using https://github.com/lukeed/resolve.exports
if (data.exports) {
entryPoint = resolveExportsOrImports(data, '.', options, 'exports')
}
// fallback to mainFields if still not resolved
if (!entryPoint) {
for (const field of options.mainFields) {
if (field === 'browser') {
entryPoint = tryResolveBrowserEntry(dir, data, options)
if (entryPoint) {
break
}
} else if (typeof data[field] === 'string') {
entryPoint = data[field]
break
}
}
}
entryPoint ||= data.main
// try default entry when entry is not define
// https://nodejs.org/api/modules.html#all-together
const entryPoints = entryPoint
? [entryPoint]
: ['index.js', 'index.json', 'index.node']
for (let entry of entryPoints) {
// make sure we don't get scripts when looking for sass