@nuxt/vite-builder-nightly 4.0.0-29144650.ca2dff25 → 4.0.0-29146909.8ec609ca
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/index.mjs +10 -1
- package/package.json +4 -3
package/dist/index.mjs
CHANGED
|
@@ -606,6 +606,9 @@ async function buildClient(ctx) {
|
|
|
606
606
|
...nodeCompat.alias,
|
|
607
607
|
...ctx.config.resolve?.alias,
|
|
608
608
|
"nitro/runtime": join(ctx.nuxt.options.buildDir, "nitro.client.mjs"),
|
|
609
|
+
// TODO: remove in v5
|
|
610
|
+
"#internal/nitro": join(ctx.nuxt.options.buildDir, "nitro.client.mjs"),
|
|
611
|
+
"nitropack/runtime": join(ctx.nuxt.options.buildDir, "nitro.client.mjs"),
|
|
609
612
|
// work around vite optimizer bug
|
|
610
613
|
"#app-manifest": resolveModulePath("mocked-exports/empty", { from: import.meta.url })
|
|
611
614
|
}
|
|
@@ -930,7 +933,10 @@ async function buildServer(ctx) {
|
|
|
930
933
|
},
|
|
931
934
|
ssr: {
|
|
932
935
|
external: [
|
|
933
|
-
"nitro/runtime"
|
|
936
|
+
"nitro/runtime",
|
|
937
|
+
// TODO: remove in v5
|
|
938
|
+
"#internal/nitro",
|
|
939
|
+
"#internal/nitro/utils"
|
|
934
940
|
],
|
|
935
941
|
noExternal: [
|
|
936
942
|
...transpile({ isServer: true, isDev: ctx.nuxt.options.dev }),
|
|
@@ -951,6 +957,9 @@ async function buildServer(ctx) {
|
|
|
951
957
|
input: { server: entry },
|
|
952
958
|
external: [
|
|
953
959
|
"nitro/runtime",
|
|
960
|
+
// TODO: remove in v5
|
|
961
|
+
"#internal/nitro",
|
|
962
|
+
"nitropack/runtime",
|
|
954
963
|
"#internal/nuxt/paths",
|
|
955
964
|
"#internal/nuxt/app-config",
|
|
956
965
|
"#app-manifest",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/vite-builder-nightly",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-29146909.8ec609ca",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.0.0-
|
|
24
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.0.0-29146909.8ec609ca",
|
|
25
25
|
"rollup": "4.41.1",
|
|
26
26
|
"unbuild": "3.5.0",
|
|
27
27
|
"vue": "3.5.16"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.0.0-
|
|
30
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.0.0-29146909.8ec609ca",
|
|
31
31
|
"@rollup/plugin-replace": "^6.0.2",
|
|
32
32
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
33
33
|
"@vitejs/plugin-vue-jsx": "^4.2.0",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"magic-string": "^0.30.17",
|
|
46
46
|
"mlly": "^1.7.4",
|
|
47
47
|
"mocked-exports": "^0.1.1",
|
|
48
|
+
"nitropack": "2.11.12",
|
|
48
49
|
"pathe": "^2.0.3",
|
|
49
50
|
"pkg-types": "^2.1.0",
|
|
50
51
|
"postcss": "^8.5.4",
|