We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 151adb9 commit c19801cCopy full SHA for c19801c
deploy.sh
@@ -0,0 +1,16 @@
1
+#!/usr/bin/env sh
2
+
3
+# abort on errors
4
+set -e
5
6
+npm run build
7
8
+cd .vuepress/dist
9
10
+git init
11
+git add -A
12
+git commit -m 'deploy'
13
14
+git push -f [email protected]:enseadaio/documentation.git master:gh-pages
15
16
+cd -
package.json
@@ -8,7 +8,7 @@
"private": true,
"scripts": {
"start": "vuepress dev",
- "build": "vuepress buil"
+ "build": "vuepress build"
},
"dependencies": {
"vuepress": "^1.2.0"
0 commit comments