nitro-nightly 3.1.0-20251028-143534-e059a9a0 → 3.1.0-20251028-152513-2890a45f
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/_build/info.mjs +3 -0
- package/dist/_build/vite.mjs +1 -1
- package/package.json +1 -1
package/dist/_build/info.mjs
CHANGED
|
@@ -123,6 +123,9 @@ function baseBuildConfig(nitro) {
|
|
|
123
123
|
"nitro/runtime": runtimeDir,
|
|
124
124
|
"nitropack/runtime": runtimeDir,
|
|
125
125
|
// Backwards compatibility
|
|
126
|
+
"nitro/deps/h3": "h3",
|
|
127
|
+
"nitro/deps/ofetch": "ofetch",
|
|
128
|
+
"nitro/h3": "h3",
|
|
126
129
|
...env.alias
|
|
127
130
|
});
|
|
128
131
|
return {
|
package/dist/_build/vite.mjs
CHANGED
|
@@ -497,7 +497,7 @@ function createNitroEnvironment(ctx) {
|
|
|
497
497
|
noExternal: ctx.nitro.options.dev ? (
|
|
498
498
|
// Workaround for dev: external dependencies are not resolvable with respect to nodeModulePaths
|
|
499
499
|
new RegExp(runtimeDependencies.join("|"))
|
|
500
|
-
) :
|
|
500
|
+
) : true,
|
|
501
501
|
conditions: ctx.nitro.options.exportConditions,
|
|
502
502
|
externalConditions: ctx.nitro.options.exportConditions
|
|
503
503
|
},
|
package/package.json
CHANGED