@nuxt/vite-builder-nightly 4.2.0-29331790.6ef632b8 → 4.2.0-29332219.8d8a7e01
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.d.mts +18 -10
- package/dist/index.d.ts +18 -10
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { NuxtBuilder
|
|
1
|
+
import { ViteConfig } from 'nuxt/schema';
|
|
2
|
+
import { NuxtBuilder } from '@nuxt/schema';
|
|
3
3
|
|
|
4
|
-
interface ViteBuildContext {
|
|
5
|
-
nuxt: Nuxt;
|
|
6
|
-
config: ViteConfig;
|
|
7
|
-
entry: string;
|
|
8
|
-
clientServer?: vite.ViteDevServer;
|
|
9
|
-
ssrServer?: vite.ViteDevServer;
|
|
10
|
-
}
|
|
11
4
|
declare const bundle: NuxtBuilder['bundle'];
|
|
12
5
|
|
|
6
|
+
declare module 'nuxt/schema' {
|
|
7
|
+
interface ViteOptions extends ViteConfig {
|
|
8
|
+
$client?: ViteConfig;
|
|
9
|
+
$server?: ViteConfig;
|
|
10
|
+
viteNode?: {
|
|
11
|
+
maxRetryAttempts?: number;
|
|
12
|
+
/** in milliseconds */
|
|
13
|
+
baseRetryDelay?: number;
|
|
14
|
+
/** in milliseconds */
|
|
15
|
+
maxRetryDelay?: number;
|
|
16
|
+
/** in milliseconds */
|
|
17
|
+
requestTimeout?: number;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
13
22
|
export { bundle };
|
|
14
|
-
export type { ViteBuildContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { NuxtBuilder
|
|
1
|
+
import { ViteConfig } from 'nuxt/schema';
|
|
2
|
+
import { NuxtBuilder } from '@nuxt/schema';
|
|
3
3
|
|
|
4
|
-
interface ViteBuildContext {
|
|
5
|
-
nuxt: Nuxt;
|
|
6
|
-
config: ViteConfig;
|
|
7
|
-
entry: string;
|
|
8
|
-
clientServer?: vite.ViteDevServer;
|
|
9
|
-
ssrServer?: vite.ViteDevServer;
|
|
10
|
-
}
|
|
11
4
|
declare const bundle: NuxtBuilder['bundle'];
|
|
12
5
|
|
|
6
|
+
declare module 'nuxt/schema' {
|
|
7
|
+
interface ViteOptions extends ViteConfig {
|
|
8
|
+
$client?: ViteConfig;
|
|
9
|
+
$server?: ViteConfig;
|
|
10
|
+
viteNode?: {
|
|
11
|
+
maxRetryAttempts?: number;
|
|
12
|
+
/** in milliseconds */
|
|
13
|
+
baseRetryDelay?: number;
|
|
14
|
+
/** in milliseconds */
|
|
15
|
+
maxRetryDelay?: number;
|
|
16
|
+
/** in milliseconds */
|
|
17
|
+
requestTimeout?: number;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
13
22
|
export { bundle };
|
|
14
|
-
export type { ViteBuildContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/vite-builder-nightly",
|
|
3
|
-
"version": "4.2.0-
|
|
3
|
+
"version": "4.2.0-29332219.8d8a7e01",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.0-
|
|
24
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.0-29332219.8d8a7e01",
|
|
25
25
|
"nitropack": "2.12.6",
|
|
26
26
|
"rolldown": "1.0.0-beta.42",
|
|
27
27
|
"rollup": "4.52.4",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"vue": "3.5.22"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.0-
|
|
32
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.0-29332219.8d8a7e01",
|
|
33
33
|
"@rollup/plugin-replace": "^6.0.2",
|
|
34
34
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
35
35
|
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"vue-bundle-renderer": "^2.2.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
+
"nuxt": "npm:nuxt-nightly@4.2.0-29332219.8d8a7e01",
|
|
64
65
|
"rolldown": "^1.0.0-beta.38",
|
|
65
66
|
"vue": "^3.3.4"
|
|
66
67
|
},
|