2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-19 09:50:33 +03:00

update build process for docs

This commit is contained in:
Jeff
2018-01-15 15:25:22 -08:00
parent e236c47300
commit 17312da2fa
7 changed files with 132 additions and 26 deletions
+8
View File
@@ -0,0 +1,8 @@
// https://github.com/shelljs/shelljs
const shell = require('shelljs');
shell.exec('gitbook build', (code, stdout, stderr) => {
if( code === 0 ) {
shell.exec('mv _book site/docs')
}
});