2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/build/build-docs.js
T
2018-01-15 15:25:22 -08:00

8 lines
194 B
JavaScript

// 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')
}
});