vite 5.0.0-beta.1 → 5.0.0-beta.10
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/LICENSE.md +74 -3
- package/client.d.ts +8 -56
- package/dist/client/client.mjs +17 -0
- package/dist/client/client.mjs.map +1 -1
- package/dist/node/chunks/{dep-e31699fa.js → dep-RTfXXG9P.js} +3509 -4005
- package/dist/node/chunks/{dep-6db0c752.js → dep-pNoMh5ox.js} +145 -145
- package/dist/node/chunks/{dep-c457d7ce.js → dep-s3v9f2KI.js} +2 -2
- package/dist/node/cli.js +15 -10
- package/dist/node/index.d.ts +3261 -3503
- package/dist/node/index.js +8 -6
- package/dist/node-cjs/publicUtils.cjs +800 -510
- package/index.cjs +13 -9
- package/index.d.cts +6 -0
- package/package.json +39 -36
- package/types/hot.d.ts +4 -0
- package/types/import-meta.d.ts +5 -0
- /package/dist/node/chunks/{dep-c423598f.js → dep-8a-6Quh6.js} +0 -0
- /package/dist/node/chunks/{dep-f0c7dae0.js → dep-kjUoH5nk.js} +0 -0
package/index.cjs
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/* eslint-disable no-restricted-globals */
|
|
2
2
|
|
|
3
|
+
warnCjsUsage()
|
|
4
|
+
|
|
3
5
|
// type utils
|
|
4
6
|
module.exports.defineConfig = (config) => config
|
|
5
7
|
|
|
@@ -23,12 +25,14 @@ asyncFunctions.forEach((name) => {
|
|
|
23
25
|
import('./dist/node/index.js').then((i) => i[name](...args))
|
|
24
26
|
})
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
28
|
+
function warnCjsUsage() {
|
|
29
|
+
if (process.env.VITE_CJS_IGNORE_WARNING) return
|
|
30
|
+
globalThis.__vite_cjs_skip_clear_screen = true
|
|
31
|
+
const yellow = (str) => `\u001b[33m${str}\u001b[39m`
|
|
32
|
+
const log = process.env.VITE_CJS_TRACE ? console.trace : console.warn
|
|
33
|
+
log(
|
|
34
|
+
yellow(
|
|
35
|
+
`The CJS build of Vite's Node API is deprecated. See https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.`,
|
|
36
|
+
),
|
|
37
|
+
)
|
|
38
|
+
}
|
package/index.d.cts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Evan You",
|
|
@@ -20,9 +20,14 @@
|
|
|
20
20
|
"types": "./dist/node/index.d.ts",
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
"import": {
|
|
24
|
+
"types": "./dist/node/index.d.ts",
|
|
25
|
+
"default": "./dist/node/index.js"
|
|
26
|
+
},
|
|
27
|
+
"require": {
|
|
28
|
+
"types": "./index.d.cts",
|
|
29
|
+
"default": "./index.cjs"
|
|
30
|
+
}
|
|
26
31
|
},
|
|
27
32
|
"./client": {
|
|
28
33
|
"types": "./client.d.ts"
|
|
@@ -38,6 +43,7 @@
|
|
|
38
43
|
"dist",
|
|
39
44
|
"client.d.ts",
|
|
40
45
|
"index.cjs",
|
|
46
|
+
"index.d.cts",
|
|
41
47
|
"types"
|
|
42
48
|
],
|
|
43
49
|
"engines": {
|
|
@@ -55,27 +61,25 @@
|
|
|
55
61
|
"funding": "https://github.com/vitejs/vite?sponsor=1",
|
|
56
62
|
"//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
|
|
57
63
|
"dependencies": {
|
|
58
|
-
"esbuild": "^0.
|
|
59
|
-
"postcss": "^8.4.
|
|
60
|
-
"rollup": "^
|
|
64
|
+
"esbuild": "^0.19.3",
|
|
65
|
+
"postcss": "^8.4.31",
|
|
66
|
+
"rollup": "^4.1.4"
|
|
61
67
|
},
|
|
62
68
|
"optionalDependencies": {
|
|
63
|
-
"fsevents": "~2.3.
|
|
69
|
+
"fsevents": "~2.3.3"
|
|
64
70
|
},
|
|
65
71
|
"devDependencies": {
|
|
66
72
|
"@ampproject/remapping": "^2.2.1",
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"@rollup/plugin-
|
|
71
|
-
"@rollup/plugin-
|
|
72
|
-
"@rollup/plugin-
|
|
73
|
-
"@rollup/plugin-
|
|
74
|
-
"@rollup/
|
|
75
|
-
"@rollup/plugin-typescript": "^11.1.2",
|
|
76
|
-
"@rollup/pluginutils": "^5.0.2",
|
|
73
|
+
"@jridgewell/trace-mapping": "^0.3.19",
|
|
74
|
+
"@rollup/plugin-alias": "^5.0.1",
|
|
75
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
76
|
+
"@rollup/plugin-dynamic-import-vars": "^2.0.7",
|
|
77
|
+
"@rollup/plugin-json": "^6.0.1",
|
|
78
|
+
"@rollup/plugin-node-resolve": "15.2.3",
|
|
79
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
80
|
+
"@rollup/pluginutils": "^5.0.5",
|
|
77
81
|
"@types/escape-html": "^1.0.2",
|
|
78
|
-
"@types/pnpapi": "^0.0.
|
|
82
|
+
"@types/pnpapi": "^0.0.3",
|
|
79
83
|
"acorn": "^8.10.0",
|
|
80
84
|
"acorn-walk": "^8.2.0",
|
|
81
85
|
"cac": "^6.7.14",
|
|
@@ -88,40 +92,41 @@
|
|
|
88
92
|
"debug": "^4.3.4",
|
|
89
93
|
"dep-types": "link:./src/types",
|
|
90
94
|
"dotenv": "^16.3.1",
|
|
91
|
-
"dotenv-expand": "^
|
|
92
|
-
"es-module-lexer": "^1.3.
|
|
95
|
+
"dotenv-expand": "^10.0.0",
|
|
96
|
+
"es-module-lexer": "^1.3.1",
|
|
93
97
|
"escape-html": "^1.0.3",
|
|
94
98
|
"estree-walker": "^3.0.3",
|
|
95
99
|
"etag": "^1.8.1",
|
|
96
100
|
"fast-glob": "^3.3.1",
|
|
97
101
|
"http-proxy": "^1.18.1",
|
|
98
102
|
"json-stable-stringify": "^1.0.2",
|
|
99
|
-
"launch-editor-middleware": "^2.6.
|
|
100
|
-
"lightningcss": "^1.
|
|
101
|
-
"magic-string": "^0.30.
|
|
103
|
+
"launch-editor-middleware": "^2.6.1",
|
|
104
|
+
"lightningcss": "^1.22.0",
|
|
105
|
+
"magic-string": "^0.30.5",
|
|
102
106
|
"micromatch": "^4.0.5",
|
|
103
|
-
"mlly": "^1.4.
|
|
107
|
+
"mlly": "^1.4.2",
|
|
104
108
|
"mrmime": "^1.0.1",
|
|
105
109
|
"okie": "^1.0.1",
|
|
106
110
|
"open": "^8.4.2",
|
|
107
111
|
"parse5": "^7.1.2",
|
|
108
|
-
"periscopic": "^
|
|
112
|
+
"periscopic": "^4.0.2",
|
|
109
113
|
"picocolors": "^1.0.0",
|
|
110
114
|
"picomatch": "^2.3.1",
|
|
111
115
|
"postcss-import": "^15.1.0",
|
|
112
116
|
"postcss-load-config": "^4.0.1",
|
|
113
117
|
"postcss-modules": "^6.0.0",
|
|
114
118
|
"resolve.exports": "^2.0.2",
|
|
115
|
-
"rollup-plugin-
|
|
119
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
120
|
+
"rollup-plugin-license": "^3.2.0",
|
|
116
121
|
"sirv": "^2.0.3",
|
|
117
122
|
"source-map-support": "^0.5.21",
|
|
118
123
|
"strip-ansi": "^7.1.0",
|
|
119
124
|
"strip-literal": "^1.3.0",
|
|
120
|
-
"tsconfck": "^
|
|
121
|
-
"tslib": "^2.6.
|
|
125
|
+
"tsconfck": "^3.0.0",
|
|
126
|
+
"tslib": "^2.6.2",
|
|
122
127
|
"types": "link:./types",
|
|
123
|
-
"ufo": "^1.
|
|
124
|
-
"ws": "^8.
|
|
128
|
+
"ufo": "^1.3.1",
|
|
129
|
+
"ws": "^8.14.2"
|
|
125
130
|
},
|
|
126
131
|
"peerDependencies": {
|
|
127
132
|
"@types/node": "^18.0.0 || >=20.0.0",
|
|
@@ -159,12 +164,10 @@
|
|
|
159
164
|
"dev": "rimraf dist && pnpm run build-bundle -w",
|
|
160
165
|
"build": "rimraf dist && run-s build-bundle build-types",
|
|
161
166
|
"build-bundle": "rollup --config rollup.config.ts --configPlugin typescript",
|
|
162
|
-
"build-types": "run-s build-types-temp build-types-
|
|
167
|
+
"build-types": "run-s build-types-temp build-types-roll build-types-check",
|
|
163
168
|
"build-types-temp": "tsc --emitDeclarationOnly --outDir temp/node -p src/node",
|
|
164
|
-
"build-types-
|
|
165
|
-
"build-types-
|
|
166
|
-
"build-types-post-patch": "tsx scripts/postPatchTypes.ts",
|
|
167
|
-
"build-types-check": "tsx scripts/checkBuiltTypes.ts && tsc --project tsconfig.check.json",
|
|
169
|
+
"build-types-roll": "rollup --config rollup.dts.config.ts --configPlugin typescript && rimraf temp",
|
|
170
|
+
"build-types-check": "tsc --project tsconfig.check.json",
|
|
168
171
|
"typecheck": "tsc --noEmit",
|
|
169
172
|
"lint": "eslint --cache --ext .ts src/**",
|
|
170
173
|
"format": "prettier --write --cache --parser typescript \"src/**/*.ts\""
|
package/types/hot.d.ts
CHANGED
|
@@ -28,5 +28,9 @@ export interface ViteHotContext {
|
|
|
28
28
|
event: T,
|
|
29
29
|
cb: (payload: InferCustomEventPayload<T>) => void,
|
|
30
30
|
): void
|
|
31
|
+
off<T extends string>(
|
|
32
|
+
event: T,
|
|
33
|
+
cb: (payload: InferCustomEventPayload<T>) => void,
|
|
34
|
+
): void
|
|
31
35
|
send<T extends string>(event: T, data?: InferCustomEventPayload<T>): void
|
|
32
36
|
}
|
|
File without changes
|
|
File without changes
|