-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 960 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "vxe-design-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"update": "pnpm install --no-frozen-lockfile",
"update:v3": "cd v3 && npm run update",
"update:v4": "cd v4 && npm run update",
"update:all": "npm run update:v3 && npm run update:v4",
"build:v3": "cd v3 && npm run pack",
"build:v4": "cd v4 && npm run pack",
"build:all": "npm run build:v3 && npm run build:v4",
"build": "npm run build:all",
"pack:v3": "npm run build:v3 && gulp build_v3_docs && gulp build_v3_zip",
"pack:v4": "npm run build:v4 && gulp build_v4_docs && gulp build_v4_zip",
"pack:all": "npm run build:all && gulp build_all_docs && gulp build_all_zip"
},
"devDependencies": {
"del": "6.0.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-zip": "5.1.0",
"uglify-js": "3.17.4",
"xe-utils": "^4.0.4"
}
}