chore: bump vite version to 3.0

Signed-off-by: Ryan Wang <i@ryanc.cc>
pull/596/head
Ryan Wang 2022-08-07 23:54:54 +08:00
parent da265e0187
commit a1a319ddc5
5 changed files with 768 additions and 273 deletions

View File

@ -41,7 +41,7 @@
"axios": "^0.27.2",
"filepond": "^4.30.4",
"filepond-plugin-image-preview": "^4.6.11",
"floating-vue": "2.0.0-beta.17",
"floating-vue": "2.0.0-beta.19",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"pinia": "^2.0.17",
@ -54,7 +54,7 @@
"yaml": "^2.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@changesets/cli": "^2.24.2",
"@rushstack/eslint-patch": "^1.1.4",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@types/jsdom": "^20.0.0",
@ -63,9 +63,9 @@
"@types/node": "^17.0.45",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vitest/ui": "^0.20.2",
"@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vitest/ui": "^0.21.0",
"@vue/compiler-sfc": "^3.2.37",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
@ -74,28 +74,28 @@
"autoprefixer": "^10.4.8",
"c8": "^7.12.0",
"cypress": "^9.7.0",
"eslint": "^8.20.0",
"eslint": "^8.21.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"postcss": "^8.4.14",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.54.0",
"sass": "^1.54.3",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.7",
"tailwindcss": "^3.1.8",
"tailwindcss-safe-area": "^0.2.2",
"tailwindcss-themer": "^2.0.1",
"typescript": "~4.7.4",
"vite": "^2.9.14",
"vite": "^3.0.4",
"vite-compression-plugin": "^0.0.4",
"vite-plugin-externals": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.12.3",
"vite-plugin-static-copy": "^0.7.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.20.2",
"vue-tsc": "^0.39.2"
"vitest": "^0.21.0",
"vue-tsc": "^0.39.5"
}
}

View File

@ -48,7 +48,7 @@
"@iconify-json/ri": "^1.1.3",
"histoire": "^0.8.4",
"unplugin-icons": "^0.14.8",
"vite-plugin-dts": "^1.4.0"
"vite-plugin-dts": "^1.4.1"
},
"peerDependencies": {
"vue": "^3.2.37",
@ -65,8 +65,8 @@
"@codemirror/commands": "^6.0.1",
"@codemirror/language": "^6.2.1",
"@codemirror/legacy-modes": "^6.1.0",
"@codemirror/state": "^6.1.0",
"@codemirror/view": "^6.1.2",
"@codemirror/state": "^6.1.1",
"@codemirror/view": "^6.2.0",
"codemirror": "^6.0.1"
}
}

View File

@ -41,7 +41,7 @@
"axios": "^0.27.2"
},
"devDependencies": {
"vite-plugin-dts": "^1.4.0"
"vite-plugin-dts": "^1.4.1"
},
"peerDependencies": {
"vue": "^3.2.37",

File diff suppressed because it is too large Load Diff

View File

@ -80,6 +80,9 @@ export default ({ mode }: { mode: string }) => {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
server: {
port: 3000,
},
build: {
chunkSizeWarningLimit: 2048,
},