mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
821 B
JavaScript
32 lines
821 B
JavaScript
const path = require('path');
|
|
const fs = require('fs-extra');
|
|
const nodeWatch = require('node-watch');
|
|
const debounce = require('lodash/debounce');
|
|
const shelljs = require('shelljs');
|
|
|
|
module.exports = function(config = {}) {
|
|
// 清空 dist 目录
|
|
fs.emptyDirSync(config.dist);
|
|
|
|
extracter(config);
|
|
|
|
if (config.watch) {
|
|
nodeWatch(config.src, { recursive: true }, () => debouncedFunc(config));
|
|
}
|
|
};
|
|
|
|
const debouncedFunc = debounce(config => extracter(config), 100);
|
|
|
|
function extracter(config = {}) {
|
|
// 复制 src
|
|
fs.copySync(config.src, config.dist, {
|
|
filter(src = '') {
|
|
const extname = path.extname(src);
|
|
return ['.js', '.pcss', '.md'].indexOf(extname) < 0;
|
|
}
|
|
});
|
|
|
|
// 编译 js wxss 文件
|
|
shelljs.exec(`gulp build --gulpfile build/build.js --dist ${config.dist} --color`);
|
|
}
|