-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add the builtins
environment resolve
#18584
Changes from 12 commits
bc680b8
298e0c1
63866c9
4712b5f
98723a4
fbdadfc
8c0bc0a
0861cb2
d2a05d5
e39c3a2
ad579bf
d1f1ca0
ae1ed5d
5666f67
8181eeb
1baf5c8
0b7d83f
2699eba
debad44
664273d
09ff292
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -25,10 +25,12 @@ import { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isDataUrl, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isExternalUrl, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isInNodeModules, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isNodeLikeBuiltin, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isNonDriveRelativeAbsolutePath, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isObject, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isOptimizable, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isTsRequest, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nodeLikeBuiltins, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
normalizePath, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
safeRealpathSync, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tryStatSync, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -97,9 +99,9 @@ export interface EnvironmentResolveOptions { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
external?: string[] | true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @internal | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Array of strings or regular expressions that indicate what modules are builtin for the environment. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enableBuiltinNoExternalCheck?: boolean | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
builtins?: (string | RegExp)[] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export interface ResolveOptions extends EnvironmentResolveOptions { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -173,11 +175,8 @@ interface ResolvePluginOptions { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export interface InternalResolveOptions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extends Required<Omit<ResolveOptions, 'enableBuiltinNoExternalCheck'>>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ResolvePluginOptions { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** @internal this is always optional for backward compat */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enableBuiltinNoExternalCheck?: boolean | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -422,47 +421,68 @@ export function resolvePlugin( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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.enableBuiltinNoExternalCheck && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// built-ins | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// externalize if building for a server environment, otherwise redirect to an empty module | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
currentEnvironmentOptions.consumer === 'server' && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isBuiltin(options.builtins, id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return options.idOnly | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? id | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: { id, external: true, moduleSideEffects: false } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
currentEnvironmentOptions.consumer === 'server' && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isNodeLikeBuiltin(id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 built-in module "${id}"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (importer) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message += ` imported from "${path.relative( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
process.cwd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
importer, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
)}"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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.`, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message += `. Consider disabling environments.${this.environment.name}.noExternal or remove the built-in dependency.` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.error(message) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dario-piotrowicz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
currentEnvironmentOptions.consumer === 'client' && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isNodeLikeBuiltin(id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
How about moving the "if options.enableBuiltinNoExternalCheck block" here from above and removing By setting This way if an environment sets There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've made the changes in regards to |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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 built-in module "${id}"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (importer) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message += ` imported from "${path.relative( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
process.cwd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
importer, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
)}"` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return isProduction | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? browserExternalId | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: `${browserExternalId}:${id}` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message += `. Consider disabling environments.${this.environment.name}.noExternal or remove the built-in dependency.` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.error(message) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sapphi-red marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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}` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -720,8 +740,11 @@ export function tryNodeResolve( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
basedir = root | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const isModuleBuiltin = (id: string) => | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
isBuiltin(options?.builtins ?? nodeLikeBuiltins, id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dario-piotrowicz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let selfPkg = null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!isBuiltin(id) && !id.includes('\0') && bareImportRE.test(id)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!isModuleBuiltin(id) && !id.includes('\0') && bareImportRE.test(id)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// check if it's a self reference dep. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const selfPackageData = findNearestPackageData(basedir, packageCache) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
selfPkg = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -738,7 +761,7 @@ export function tryNodeResolve( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// if so, we can resolve to a special id that errors only when imported. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
basedir !== root && // root has no peer dep | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
!isBuiltin(id) && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
!isModuleBuiltin(id) && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
!id.includes('\0') && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bareImportRE.test(id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this does not work.
cloudflare:*
will be processed by esbuild and IIRC esbuild does not externalize them automatically and then it throwsCould not resolve "cloudflare:*"
error. I guess it needs to bereturn { path: resolved, external: true }
.But I wonder if we should set
external: true
for anything that was externalized by rollup plugins orresolve.external
instead of checkingisBuiltin
here.