vite 2.9.6 → 2.9.7
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.
Potentially problematic release.
This version of vite might be problematic. Click here for more details.
- package/LICENSE.md +55 -1
- package/dist/node/chunks/{dep-9a1d6029.js → dep-0429b5b4.js} +1 -1
- package/dist/node/chunks/{dep-3397b401.js → dep-88bd5805.js} +452 -311
- package/dist/node/chunks/{dep-bcc0af00.js → dep-a9015192.js} +0 -0
- package/dist/node/chunks/{dep-a6041359.js → dep-c7a54f50.js} +1 -1
- package/dist/node/chunks/{dep-60989a1a.js → dep-fb8c3a62.js} +1 -1
- package/dist/node/cli.js +5 -5
- package/dist/node/index.d.ts +3 -0
- package/dist/node/index.js +1 -1
- package/dist/node/terser.js +7932 -6619
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Evan You",
|
|
6
6
|
"description": "Native-ESM powered web dev build tool",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"esbuild": "^0.14.27",
|
|
47
|
-
"postcss": "^8.4.
|
|
47
|
+
"postcss": "^8.4.13",
|
|
48
48
|
"resolve": "^1.22.0",
|
|
49
49
|
"rollup": "^2.59.0"
|
|
50
50
|
},
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"fsevents": "~2.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@ampproject/remapping": "^2.
|
|
56
|
-
"@babel/parser": "^7.17.
|
|
57
|
-
"@babel/types": "^7.17.
|
|
55
|
+
"@ampproject/remapping": "^2.2.0",
|
|
56
|
+
"@babel/parser": "^7.17.10",
|
|
57
|
+
"@babel/types": "^7.17.10",
|
|
58
58
|
"@jridgewell/trace-mapping": "^0.3.9",
|
|
59
59
|
"@rollup/plugin-alias": "^3.1.9",
|
|
60
60
|
"@rollup/plugin-commonjs": "^21.1.0",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"@types/micromatch": "^4.0.2",
|
|
73
73
|
"@types/mime": "^2.0.3",
|
|
74
74
|
"@types/node": "^17.0.25",
|
|
75
|
-
"@types/resolve": "^1.20.
|
|
75
|
+
"@types/resolve": "^1.20.2",
|
|
76
76
|
"@types/sass": "~1.43.1",
|
|
77
77
|
"@types/stylus": "^0.48.37",
|
|
78
78
|
"@types/ws": "^8.5.3",
|
|
79
79
|
"@vue/compiler-dom": "^3.2.33",
|
|
80
|
-
"acorn": "^8.7.
|
|
80
|
+
"acorn": "^8.7.1",
|
|
81
81
|
"cac": "6.7.9",
|
|
82
82
|
"chokidar": "^3.5.3",
|
|
83
83
|
"connect": "^3.7.0",
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
"source-map-js": "^1.0.2",
|
|
113
113
|
"source-map-support": "^0.5.21",
|
|
114
114
|
"strip-ansi": "^6.0.1",
|
|
115
|
-
"terser": "^5.
|
|
115
|
+
"terser": "^5.13.1",
|
|
116
116
|
"tsconfck": "^1.2.2",
|
|
117
|
-
"tslib": "^2.
|
|
117
|
+
"tslib": "^2.4.0",
|
|
118
118
|
"types": "link:./types",
|
|
119
|
-
"ws": "^8.
|
|
119
|
+
"ws": "^8.6.0"
|
|
120
120
|
},
|
|
121
121
|
"peerDependencies": {
|
|
122
122
|
"less": "*",
|