UNPKG

boi-cli

Version:
43 lines (38 loc) 694 B
/*BOIPLUGINS*/ // 配置 boi.spec('basic', { appName: 'APPNAME', // 本地编译目录 localPath: { src: './src/', dest: './dest/', thirdparty: './libs/' }, // cdn url cdn: { server: 'static.APPNAME.com', path: '/APPNAME/' } }); // 同名配置覆盖父级 boi.spec('js', { extType: 'js', srcType: ['es2015'], srcDir: 'js', destDir: 'js', useHash: true }); boi.spec('style', { extType: 'scss', srcDir: 'style', destDir: 'style', useHash: true }); boi.spec('html', { extType: 'html', srcDir: 'views', }); boi.spec('image', { extType: ['png', 'jpg'], destDir: 'image' });