nitro-nightly 3.1.0-20251028-000737-b443005f → 3.1.0-20251028-004953-57503e42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks/info.mjs +1 -1
- package/dist/_chunks/plugin.mjs +1 -5
- package/package.json +1 -1
package/dist/_chunks/info.mjs
CHANGED
|
@@ -10993,7 +10993,7 @@ function baseBuildPlugins(nitro, base) {
|
|
|
10993
10993
|
}
|
|
10994
10994
|
}
|
|
10995
10995
|
});
|
|
10996
|
-
} else {
|
|
10996
|
+
} else if (!nitro.options.dev) {
|
|
10997
10997
|
plugins.push(
|
|
10998
10998
|
rollupNodeFileTrace(
|
|
10999
10999
|
defu(nitro.options.externals, {
|
package/dist/_chunks/plugin.mjs
CHANGED
|
@@ -492,11 +492,7 @@ function createNitroEnvironment(ctx) {
|
|
|
492
492
|
noExternal: ctx.nitro.options.dev ? (
|
|
493
493
|
// Workaround for dev: external dependencies are not resolvable with respect to nodeModulePaths
|
|
494
494
|
new RegExp(runtimeDependencies.join("|"))
|
|
495
|
-
) :
|
|
496
|
-
// Workaround for build: externals tracing is unstable
|
|
497
|
-
ctx.nitro.options.noExternals === false ? void 0 : true
|
|
498
|
-
),
|
|
499
|
-
// prettier-ignore
|
|
495
|
+
) : void 0,
|
|
500
496
|
conditions: ctx.nitro.options.exportConditions,
|
|
501
497
|
externalConditions: ctx.nitro.options.exportConditions
|
|
502
498
|
},
|
package/package.json
CHANGED