UNPKG

vue-select

Version:

A native Vue.js component that provides similar functionality to Select2 without the overhead of jQuery.

9 lines (8 loc) 228 B
// https://github.com/shelljs/shelljs const shell = require('shelljs'); shell.exec('gitbook build', (code, stdout, stderr) => { if( code === 0 ) { shell.rm('-rf', 'site/docs'); shell.exec('mv _book site/docs') } });