Skip to content

Commit 9e3ebd6

Browse files
committed
1.8.1
1 parent 5b85250 commit 9e3ebd6

File tree

6 files changed

+772
-728
lines changed

6 files changed

+772
-728
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## 1.8.1
4+
5+
- ### ✨ Features
6+
- 新增 `clean:cache` 删除缓存命令
7+
- 新增 `clean:lib` 删除 `node_modules` 命令
8+
- 依赖升级
9+
### 🐛 Bug Fixes
10+
- 修复 `开发环境` 运行控制台错误提示
11+
312
## 1.8.0 (2022-04-01)
413

514
- ### ✨ Features

package.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
"build": "vite build && esno ./build/script/postBuild.ts",
1515
"build:no-cache": "yarn clean:cache && npm run build",
1616
"report": "cross-env REPORT=true npm run build",
17-
"preview": "vite preview",
17+
"preview": "npm run build && vite preview",
18+
"preview:dist": "vite preview",
19+
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
20+
"clean:lib": "rimraf node_modules",
1821
"build typecheck": "vuedx-typecheck . && vite build",
1922
"deploy": "gh-pages -d dist",
2023
"lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
@@ -32,35 +35,35 @@
3235
"axios": "^0.21.4",
3336
"blueimp-md5": "^2.19.0",
3437
"date-fns": "^2.28.0",
35-
"echarts": "^5.3.1",
38+
"echarts": "^5.3.2",
3639
"element-resize-detector": "^1.2.4",
3740
"lodash": "^4.17.21",
3841
"lodash-es": "^4.17.21",
3942
"mitt": "^2.1.0",
4043
"mockjs": "^1.1.0",
41-
"naive-ui": "^2.27.0",
42-
"pinia": "^2.0.13",
44+
"naive-ui": "^2.28.4",
45+
"pinia": "^2.0.14",
4346
"qs": "^6.10.3",
4447
"vfonts": "^0.1.0",
45-
"vue": "^3.2.31",
46-
"vue-router": "^4.0.14",
48+
"vue": "^3.2.33",
49+
"vue-router": "^4.0.15",
4750
"vue-types": "^4.1.1",
4851
"vuedraggable": "^4.1.0"
4952
},
5053
"devDependencies": {
5154
"@commitlint/cli": "^12.1.4",
5255
"@commitlint/config-conventional": "^12.1.4",
53-
"@types/lodash": "^4.14.181",
56+
"@types/lodash": "^4.14.182",
5457
"@types/node": "^15.14.9",
5558
"@typescript-eslint/eslint-plugin": "^4.33.0",
5659
"@typescript-eslint/parser": "^4.33.0",
5760
"@vitejs/plugin-vue": "^1.10.2",
58-
"@vitejs/plugin-vue-jsx": "^1.3.9",
59-
"@vue/compiler-sfc": "^3.2.31",
61+
"@vitejs/plugin-vue-jsx": "^1.3.10",
62+
"@vue/compiler-sfc": "^3.2.33",
6063
"@vue/eslint-config-typescript": "^7.0.0",
61-
"autoprefixer": "^10.4.4",
64+
"autoprefixer": "^10.4.7",
6265
"commitizen": "^4.2.4",
63-
"core-js": "^3.21.1",
66+
"core-js": "^3.22.5",
6467
"dotenv": "^10.0.0",
6568
"eslint": "^7.32.0",
6669
"eslint-config-prettier": "^8.5.0",
@@ -75,8 +78,8 @@
7578
"less": "^4.1.2",
7679
"less-loader": "^9.1.0",
7780
"lint-staged": "^11.2.6",
78-
"postcss": "^8.4.12",
79-
"prettier": "^2.6.1",
81+
"postcss": "^8.4.13",
82+
"prettier": "^2.6.2",
8083
"pretty-quick": "^3.1.3",
8184
"rimraf": "^3.0.2",
8285
"stylelint": "^13.13.1",
@@ -85,9 +88,9 @@
8588
"stylelint-order": "^4.1.0",
8689
"stylelint-scss": "^3.21.0",
8790
"tailwindcss": "^2.2.19",
88-
"typescript": "^4.6.3",
91+
"typescript": "^4.6.4",
8992
"unplugin-vue-components": "^0.17.21",
90-
"vite": "^2.9.1",
93+
"vite": "^2.9.8",
9194
"vite-plugin-compression": "^0.3.6",
9295
"vite-plugin-html": "^2.1.2",
9396
"vite-plugin-mock": "^2.9.6",

0 commit comments

Comments
 (0)