File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 7
7
"doc" : " docs"
8
8
},
9
9
"scripts" : {
10
- "test" : " echo \" Error: no test specified\" && exit 1"
10
+ "test" : " echo \" Error: no test specified\" && exit 1" ,
11
+ "clean" : " npx rimraf pages/.vuepress/dist/*" ,
12
+ "build-prod" : " npx run-s clean build-prod-vuepress" ,
13
+ "build-prod-vuepress" : " npx vuepress build pages/" ,
14
+ "build-copy-index" : " npx copyfiles index.html pages/.vuepress/dist/" ,
15
+ "deploy" : " npx run-s build-prod deploy-gh-pages" ,
16
+ "deploy-gh-pages" : " npx gh-pages -d pages/.vuepress/dist -b master"
11
17
},
12
18
"repository" : {
13
19
"type" : " git" ,
21
27
"homepage" : " https://github.com/CoderBotOrg/docs#readme" ,
22
28
"dependencies" : {
23
29
"vuepress" : " ^1.0.0-alpha.32"
30
+ },
31
+ "devDependencies" : {
32
+ "copyfiles" : " ^2.1.0" ,
33
+ "npm-run-all" : " ^4.1.5" ,
34
+ "rimraf" : " ^2.5.4" ,
35
+ "webpack" : " ^4.29.0"
24
36
}
25
37
}
You can’t perform that action at this time.
0 commit comments