Skip to content

Commit 88f6e3f

Browse files
committed
chore(deps): update dependencies
- vite@4 installed instead of vite@5 by virtue of requirements relations - vitepress@latest is installed - other updates are safe update Related Issue: DevCloudFE#1879
1 parent 5ecc4f2 commit 88f6e3f

File tree

2 files changed

+3847
-1222
lines changed

2 files changed

+3847
-1222
lines changed

packages/devui-vue/package.json

+46-45
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"module": "vue-devui.es.js",
2525
"style": "style.css",
2626
"scripts": {
27-
"dev": "pnpm generate:theme && vitepress dev docs",
27+
"dev": "pnpm run register:components && pnpm generate:theme && vitepress dev docs",
2828
"dev:site": "vite --port 3010",
29-
"build": "pnpm generate:theme && node --max-old-space-size=8192 node_modules/vitepress/bin/vitepress.js build docs && cp public/* docs/.vitepress/dist/assets && cp docs/assets/* docs/.vitepress/dist/assets",
29+
"build": "pnpm run register:components && pnpm generate:theme && node --max-old-space-size=8192 node_modules/vitepress/bin/vitepress.js build docs && cp public/* docs/.vitepress/dist/assets && cp docs/assets/* docs/.vitepress/dist/assets",
3030
"build:lib": "pnpm predev -- -e prod && pnpm build:components && pnpm release",
3131
"test": "jest --config jest.config.js",
3232
"coverage": "jest --config jest.config.js --coverage",
@@ -40,89 +40,90 @@
4040
"predev": "node ./devui-cli/index.js create -t vue-devui --ignore-parse-error",
4141
"prebuild": "node ./devui-cli/index.js create -t vue-devui --ignore-parse-error",
4242
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
43-
"devui-cli": "devui"
43+
"devui-cli": "devui",
44+
"register:components": "vitepress-rc"
4445
},
4546
"peerDependencies": {
4647
"vue": "^3.3"
4748
},
4849
"dependencies": {
49-
"@babel/helper-hoist-variables": "^7.22.5",
50-
"@devui-design/icons": "^1.3.0",
50+
"@babel/helper-hoist-variables": "^7.24.7",
51+
"@devui-design/icons": "^1.4.0",
5152
"@floating-ui/dom": "1.2.5",
5253
"@iktakahiro/markdown-it-katex": "^4.0.1",
5354
"@types/codemirror": "0.0.97",
54-
"@types/lodash-es": "^4.17.4",
55-
"@vue/shared": "^3.2.33",
55+
"@types/lodash-es": "^4.17.12",
56+
"@vue/shared": "^3.4.29",
5657
"@vueuse/core": "8.9.4",
57-
"async-validator": "^4.0.7",
58+
"async-validator": "^4.2.5",
5859
"clipboard": "^2.0.11",
5960
"clipboard-copy": "^4.0.1",
6061
"codemirror": "5.63.3",
61-
"dayjs": "^1.11.3",
62-
"devui-theme": "workspace:^0.0.1",
63-
"diff2html": "^3.4.35",
62+
"dayjs": "^1.11.11",
63+
"devui-theme": "workspace:^",
64+
"diff2html": "^3.4.48",
6465
"echarts": "5.3.3",
65-
"fs-extra": "^10.0.0",
66-
"highlight.js": "^11.6.0",
66+
"fs-extra": "^10.1.0",
67+
"highlight.js": "^11.9.0",
6768
"katex": "^0.12.0",
6869
"lodash": "^4.17.21",
69-
"lodash-es": "^4.17.20",
70+
"lodash-es": "^4.17.21",
7071
"markdown-it": "12.2.0",
7172
"markdown-it-emoji": "^3.0.0",
7273
"markdown-it-plantuml": "^1.4.1",
7374
"mermaid": "9.1.1",
74-
"mitt": "^3.0.0",
75+
"mitt": "^3.0.1",
7576
"monaco-editor": "0.34.0",
7677
"rxjs": "^7.8.1",
7778
"uuid": "^9.0.1",
78-
"vue": "^3.3.4",
79-
"vue-router": "^4.0.3",
80-
"xss": "^1.0.14"
79+
"vue": "^3.4.29",
80+
"vue-router": "^4.3.3",
81+
"xss": "^1.0.15"
8182
},
8283
"devDependencies": {
83-
"@babel/parser": "^7.15.5",
84-
"@babel/preset-env": "^7.14.5",
85-
"@babel/preset-typescript": "^7.14.5",
86-
"@babel/traverse": "^7.15.4",
84+
"@babel/parser": "^7.24.7",
85+
"@babel/preset-env": "^7.24.7",
86+
"@babel/preset-typescript": "^7.24.7",
87+
"@babel/traverse": "^7.24.7",
8788
"@commitlint/cli": "^11.0.0",
8889
"@commitlint/config-conventional": "^11.0.0",
89-
"@docsearch/css": "^3.3.0",
90-
"@docsearch/js": "^3.3.0",
90+
"@docsearch/css": "^3.6.0",
91+
"@docsearch/js": "^3.6.0",
9192
"@types/jest": "^26.0.24",
9293
"@types/markdown-it": "^12.2.3",
93-
"@types/node": "^16.11.6",
94-
"@typescript-eslint/eslint-plugin": "^4.27.0",
95-
"@typescript-eslint/parser": "^4.27.0",
96-
"@vitejs/plugin-vue": "^1.3.0",
97-
"@vitejs/plugin-vue-jsx": "^1.1.0",
98-
"@vue/babel-plugin-jsx": "^1.0.6",
99-
"@vue/compiler-sfc": "^3.0.5",
100-
"@vue/test-utils": "^2.0.0-rc.9",
94+
"@types/node": "^20.14.7",
95+
"@typescript-eslint/eslint-plugin": "^4.33.0",
96+
"@typescript-eslint/parser": "^4.33.0",
97+
"@vitejs/plugin-vue": "^4.6.2",
98+
"@vitejs/plugin-vue-jsx": "^1.3.10",
99+
"@vue/babel-plugin-jsx": "^1.2.2",
100+
"@vue/compiler-sfc": "^3.4.29",
101+
"@vue/test-utils": "^2.4.6",
101102
"@vuedx/typecheck": "^0.4.1",
102103
"@vuedx/typescript-plugin-vue": "^0.4.1",
103-
"babel-jest": "^27.0.2",
104+
"babel-jest": "^27.5.1",
104105
"chalk": "^4.1.2",
105-
"commander": "^8.1.0",
106+
"commander": "^8.3.0",
106107
"conventional-changelog-cli": "^2.2.2",
107-
"devui-cli": "workspace:^0.0.2",
108+
"devui-cli": "workspace:^",
108109
"escape-html": "^1.0.3",
109110
"fflate": "^0.7.4",
110-
"inquirer": "^8.1.2",
111-
"jest": "^27.0.4",
111+
"inquirer": "^8.2.6",
112+
"jest": "^27.5.1",
112113
"markdown-it": "^13.0.1",
113114
"markdown-it-container": "^3.0.0",
114115
"ora": "^5.4.1",
115116
"patch-vue-directive-ssr": "^0.0.1",
116117
"path-exists": "^5.0.0",
117118
"prismjs": "^1.29.0",
118-
"sass": "^1.32.2",
119-
"shelljs": "^0.8.4",
120-
"typescript": "^4.3.2",
121-
"vite": "^2.4.4",
122-
"vite-plugin-md": "^0.6.0",
119+
"sass": "^1.77.6",
120+
"shelljs": "^0.8.5",
121+
"typescript": "^4.9.5",
122+
"vite": "^4.5.3",
123+
"vite-plugin-md": "^0.21.5",
123124
"vite-svg-loader": "^2.2.0",
124-
"vitepress": "0.20.1",
125-
"vitepress-theme-demoblock": "1.3.2",
126-
"vue-tsc": "0.38.8"
125+
"vitepress": "1.2.3",
126+
"vitepress-theme-demoblock": "3.0.7",
127+
"vue-tsc": "2.0.21"
127128
}
128129
}

0 commit comments

Comments
 (0)