提交 07ac6620 编写于 作者: fxy060608's avatar fxy060608

build(deps): bump vite from 2.9.8 to 2.9.9

上级 0aba5c86
...@@ -21,6 +21,6 @@ ...@@ -21,6 +21,6 @@
"compression": "^1.7.4", "compression": "^1.7.4",
"cypress": "^7.3.0", "cypress": "^7.3.0",
"serve-static": "^1.14.1", "serve-static": "^1.14.1",
"vite": "^2.9.8" "vite": "^2.9.9"
} }
} }
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
"@dcloudio/uni-shared": "3.0.0-alpha-3040820220424005", "@dcloudio/uni-shared": "3.0.0-alpha-3040820220424005",
"@dcloudio/uts": "3.0.0-alpha-3040820220424005", "@dcloudio/uts": "3.0.0-alpha-3040820220424005",
"@rollup/pluginutils": "^4.2.0", "@rollup/pluginutils": "^4.2.0",
"@vitejs/plugin-vue": "^2.3.2", "@vitejs/plugin-vue": "^2.3.3",
"@vue/compiler-dom": "3.2.33", "@vue/compiler-dom": "3.2.33",
"@vue/compiler-sfc": "3.2.33", "@vue/compiler-sfc": "3.2.33",
"debug": "^4.3.3", "debug": "^4.3.3",
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
"@vue/compiler-core": "3.2.33", "@vue/compiler-core": "3.2.33",
"esbuild": "^0.14.27", "esbuild": "^0.14.27",
"postcss": "^8.4.13", "postcss": "^8.4.13",
"vite": "^2.9.8", "vite": "^2.9.9",
"vue": "3.2.33" "vue": "3.2.33"
} }
} }
...@@ -2,7 +2,6 @@ import type { Plugin } from 'vite' ...@@ -2,7 +2,6 @@ import type { Plugin } from 'vite'
import type { PluginContext, RollupError } from 'rollup' import type { PluginContext, RollupError } from 'rollup'
import path from 'path' import path from 'path'
import fs from 'fs-extra' import fs from 'fs-extra'
import qs from 'querystring'
import { import {
CompilerError, CompilerError,
parse, parse,
...@@ -156,8 +155,8 @@ function attrsToQuery( ...@@ -156,8 +155,8 @@ function attrsToQuery(
for (const name in attrs) { for (const name in attrs) {
const value = attrs[name] const value = attrs[name]
if (!ignoreList.includes(name)) { if (!ignoreList.includes(name)) {
query += `&${qs.escape(name)}${ query += `&${encodeURIComponent(name)}${
value ? `=${qs.escape(String(value))}` : `` value ? `=${encodeURIComponent(value)}` : ``
}` }`
} }
} }
......
import path from 'path' import path from 'path'
import qs from 'querystring'
import { EXTNAME_JS_RE, EXTNAME_VUE } from '../../constants' import { EXTNAME_JS_RE, EXTNAME_VUE } from '../../constants'
export interface VueQuery { export interface VueQuery {
...@@ -13,7 +12,7 @@ export interface VueQuery { ...@@ -13,7 +12,7 @@ export interface VueQuery {
export function parseVueRequest(id: string) { export function parseVueRequest(id: string) {
const [filename, rawQuery] = id.split(`?`, 2) const [filename, rawQuery] = id.split(`?`, 2)
const query = qs.parse(rawQuery) as VueQuery const query = Object.fromEntries(new URLSearchParams(rawQuery)) as VueQuery
if (query.vue != null) { if (query.vue != null) {
query.vue = true query.vue = true
} }
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
"@dcloudio/uni-shared": "3.0.0-alpha-3040820220424005", "@dcloudio/uni-shared": "3.0.0-alpha-3040820220424005",
"@rollup/pluginutils": "^4.2.0", "@rollup/pluginutils": "^4.2.0",
"@vitejs/plugin-legacy": "^1.8.2", "@vitejs/plugin-legacy": "^1.8.2",
"@vitejs/plugin-vue": "^2.3.2", "@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10", "@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-core": "3.2.33", "@vue/compiler-core": "3.2.33",
"@vue/compiler-dom": "3.2.33", "@vue/compiler-dom": "3.2.33",
...@@ -52,11 +52,11 @@ ...@@ -52,11 +52,11 @@
"@types/sass": "^1.16.0", "@types/sass": "^1.16.0",
"@vue/babel-plugin-jsx": "^1.1.1", "@vue/babel-plugin-jsx": "^1.1.1",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
"vite": "^2.9.8", "vite": "^2.9.9",
"vue": "3.2.33" "vue": "3.2.33"
}, },
"peerDependencies": { "peerDependencies": {
"vite": "^2.9.8" "vite": "^2.9.9"
}, },
"uni-app": { "uni-app": {
"compilerVersion": "3.4.8" "compilerVersion": "3.4.8"
......
...@@ -21,7 +21,7 @@ importers: ...@@ -21,7 +21,7 @@ importers:
'@types/jest': ^27.0.0 '@types/jest': ^27.0.0
'@types/node': ^17.0.31 '@types/node': ^17.0.31
'@typescript-eslint/parser': ^5.14.0 '@typescript-eslint/parser': ^5.14.0
'@vitejs/plugin-vue': ^2.3.2 '@vitejs/plugin-vue': ^2.3.3
'@vitejs/plugin-vue-jsx': ^1.3.10 '@vitejs/plugin-vue-jsx': ^1.3.10
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
'@vue/reactivity': 3.2.33 '@vue/reactivity': 3.2.33
...@@ -50,7 +50,7 @@ importers: ...@@ -50,7 +50,7 @@ importers:
semver: ^7.3.5 semver: ^7.3.5
ts-jest: ^27.0.3 ts-jest: ^27.0.3
typescript: 4.6.4 typescript: 4.6.4
vite: ^2.9.8 vite: ^2.9.9
vue: 3.2.33 vue: 3.2.33
vue-router: ^4.0.15 vue-router: ^4.0.15
yorkie: ^2.0.0 yorkie: ^2.0.0
...@@ -72,7 +72,7 @@ importers: ...@@ -72,7 +72,7 @@ importers:
'@types/jest': 27.5.0 '@types/jest': 27.5.0
'@types/node': 17.0.31 '@types/node': 17.0.31
'@typescript-eslint/parser': 5.22.0_e4zyhrvfnqudwdx5bevnvkluy4 '@typescript-eslint/parser': 5.22.0_e4zyhrvfnqudwdx5bevnvkluy4
'@vitejs/plugin-vue': 2.3.2_vite@2.9.8+vue@3.2.33 '@vitejs/plugin-vue': 2.3.3_vite@2.9.9+vue@3.2.33
'@vitejs/plugin-vue-jsx': 1.3.10 '@vitejs/plugin-vue-jsx': 1.3.10
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
'@vue/reactivity': 3.2.33 '@vue/reactivity': 3.2.33
...@@ -101,7 +101,7 @@ importers: ...@@ -101,7 +101,7 @@ importers:
semver: 7.3.7 semver: 7.3.7
ts-jest: 27.1.4_nnrehbtdwi4vovimszixfn4hgm ts-jest: 27.1.4_nnrehbtdwi4vovimszixfn4hgm
typescript: 4.6.4 typescript: 4.6.4
vite: 2.9.8 vite: 2.9.9
vue: 3.2.33 vue: 3.2.33
vue-router: 4.0.15_vue@3.2.33 vue-router: 4.0.15_vue@3.2.33
yorkie: 2.0.0 yorkie: 2.0.0
...@@ -115,7 +115,7 @@ importers: ...@@ -115,7 +115,7 @@ importers:
compression: ^1.7.4 compression: ^1.7.4
cypress: ^7.3.0 cypress: ^7.3.0
serve-static: ^1.14.1 serve-static: ^1.14.1
vite: ^2.9.8 vite: ^2.9.9
vue: 3.2.33 vue: 3.2.33
vue-router: ^4.0.15 vue-router: ^4.0.15
vuex: ^4.0.2 vuex: ^4.0.2
...@@ -131,7 +131,7 @@ importers: ...@@ -131,7 +131,7 @@ importers:
compression: 1.7.4 compression: 1.7.4
cypress: 7.7.0 cypress: 7.7.0
serve-static: 1.15.0 serve-static: 1.15.0
vite: 2.9.8 vite: 2.9.9
packages/size-check: packages/size-check:
specifiers: specifiers:
...@@ -215,7 +215,7 @@ importers: ...@@ -215,7 +215,7 @@ importers:
'@rollup/pluginutils': ^4.2.0 '@rollup/pluginutils': ^4.2.0
'@types/debug': ^4.1.7 '@types/debug': ^4.1.7
'@types/fs-extra': ^9.0.13 '@types/fs-extra': ^9.0.13
'@vitejs/plugin-vue': ^2.3.2 '@vitejs/plugin-vue': ^2.3.3
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
...@@ -225,7 +225,7 @@ importers: ...@@ -225,7 +225,7 @@ importers:
picocolors: ^1.0.0 picocolors: ^1.0.0
postcss: ^8.4.13 postcss: ^8.4.13
rollup: ^2.59.0 rollup: ^2.59.0
vite: ^2.9.8 vite: ^2.9.9
vue: 3.2.33 vue: 3.2.33
dependencies: dependencies:
'@dcloudio/uni-cli-shared': link:../uni-cli-shared '@dcloudio/uni-cli-shared': link:../uni-cli-shared
...@@ -234,7 +234,7 @@ importers: ...@@ -234,7 +234,7 @@ importers:
'@dcloudio/uni-shared': link:../uni-shared '@dcloudio/uni-shared': link:../uni-shared
'@dcloudio/uts': link:../uts '@dcloudio/uts': link:../uts
'@rollup/pluginutils': 4.2.1 '@rollup/pluginutils': 4.2.1
'@vitejs/plugin-vue': 2.3.2_vite@2.9.8+vue@3.2.33 '@vitejs/plugin-vue': 2.3.3_vite@2.9.9+vue@3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
debug: 4.3.4 debug: 4.3.4
...@@ -247,7 +247,7 @@ importers: ...@@ -247,7 +247,7 @@ importers:
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
esbuild: 0.14.38 esbuild: 0.14.38
postcss: 8.4.13 postcss: 8.4.13
vite: 2.9.8 vite: 2.9.9
vue: 3.2.33 vue: 3.2.33
packages/uni-app-vue: packages/uni-app-vue:
...@@ -829,7 +829,7 @@ importers: ...@@ -829,7 +829,7 @@ importers:
'@types/fs-extra': ^9.0.13 '@types/fs-extra': ^9.0.13
'@types/sass': ^1.16.0 '@types/sass': ^1.16.0
'@vitejs/plugin-legacy': ^1.8.2 '@vitejs/plugin-legacy': ^1.8.2
'@vitejs/plugin-vue': ^2.3.2 '@vitejs/plugin-vue': ^2.3.3
'@vitejs/plugin-vue-jsx': ^1.3.10 '@vitejs/plugin-vue-jsx': ^1.3.10
'@vue/babel-plugin-jsx': ^1.1.1 '@vue/babel-plugin-jsx': ^1.1.1
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
...@@ -845,7 +845,7 @@ importers: ...@@ -845,7 +845,7 @@ importers:
hash-sum: ^2.0.0 hash-sum: ^2.0.0
jsonc-parser: ^3.0.0 jsonc-parser: ^3.0.0
picocolors: ^1.0.0 picocolors: ^1.0.0
vite: ^2.9.8 vite: ^2.9.9
vue: 3.2.33 vue: 3.2.33
dependencies: dependencies:
'@babel/core': 7.17.10 '@babel/core': 7.17.10
...@@ -854,8 +854,8 @@ importers: ...@@ -854,8 +854,8 @@ importers:
'@dcloudio/uni-cli-shared': link:../uni-cli-shared '@dcloudio/uni-cli-shared': link:../uni-cli-shared
'@dcloudio/uni-shared': link:../uni-shared '@dcloudio/uni-shared': link:../uni-shared
'@rollup/pluginutils': 4.2.1 '@rollup/pluginutils': 4.2.1
'@vitejs/plugin-legacy': 1.8.2_vite@2.9.8 '@vitejs/plugin-legacy': 1.8.2_vite@2.9.9
'@vitejs/plugin-vue': 2.3.2_vite@2.9.8+vue@3.2.33 '@vitejs/plugin-vue': 2.3.3_vite@2.9.9+vue@3.2.33
'@vitejs/plugin-vue-jsx': 1.3.10 '@vitejs/plugin-vue-jsx': 1.3.10
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
...@@ -877,7 +877,7 @@ importers: ...@@ -877,7 +877,7 @@ importers:
'@types/sass': 1.43.1 '@types/sass': 1.43.1
'@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.17.10 '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.17.10
chokidar: 3.5.3 chokidar: 3.5.3
vite: 2.9.8 vite: 2.9.9
vue: 3.2.33 vue: 3.2.33
packages: packages:
...@@ -2933,7 +2933,7 @@ packages: ...@@ -2933,7 +2933,7 @@ packages:
eslint-visitor-keys: 3.3.0 eslint-visitor-keys: 3.3.0
dev: true dev: true
/@vitejs/plugin-legacy/1.8.2_vite@2.9.8: /@vitejs/plugin-legacy/1.8.2_vite@2.9.9:
resolution: {integrity: sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg==} resolution: {integrity: sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg==}
engines: {node: '>=12.0.0'} engines: {node: '>=12.0.0'}
peerDependencies: peerDependencies:
...@@ -2944,7 +2944,7 @@ packages: ...@@ -2944,7 +2944,7 @@ packages:
magic-string: 0.26.1 magic-string: 0.26.1
regenerator-runtime: 0.13.9 regenerator-runtime: 0.13.9
systemjs: 6.12.1 systemjs: 6.12.1
vite: 2.9.8 vite: 2.9.9
dev: false dev: false
/@vitejs/plugin-vue-jsx/1.3.10: /@vitejs/plugin-vue-jsx/1.3.10:
...@@ -2960,14 +2960,14 @@ packages: ...@@ -2960,14 +2960,14 @@ packages:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
/@vitejs/plugin-vue/2.3.2_vite@2.9.8+vue@3.2.33: /@vitejs/plugin-vue/2.3.3_vite@2.9.9+vue@3.2.33:
resolution: {integrity: sha512-umyypfSHS4kQLdYAnJHhaASq7FRzNCdvcRoQ3uYGNk1/M4a+hXUd7ysN7BLhCrWH6uBokyCkFeUAaFDzSaaSrQ==} resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==}
engines: {node: '>=12.0.0'} engines: {node: '>=12.0.0'}
peerDependencies: peerDependencies:
vite: ^2.5.10 vite: ^2.5.10
vue: ^3.2.25 vue: ^3.2.25
dependencies: dependencies:
vite: 2.9.8 vite: 2.9.9
vue: 3.2.33 vue: 3.2.33
/@vue/babel-helper-vue-transform-on/1.0.2: /@vue/babel-helper-vue-transform-on/1.0.2:
...@@ -8131,8 +8131,8 @@ packages: ...@@ -8131,8 +8131,8 @@ packages:
extsprintf: 1.3.0 extsprintf: 1.3.0
dev: true dev: true
/vite/2.9.8: /vite/2.9.9:
resolution: {integrity: sha512-zsBGwn5UT3YS0NLSJ7hnR54+vUKfgzMUh/Z9CxF1YKEBVIe213+63jrFLmZphgGI5zXwQCSmqIdbPuE8NJywPw==} resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==}
engines: {node: '>=12.2.0'} engines: {node: '>=12.2.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册