加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_css.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
/* eslint-disable no-console */
const colors = require('colors/safe');
const concat = require('concat-files');
const glob = require('glob');
module.exports = function buildCSS() {
var isBuilding = false;
return function () {
if (isBuilding) return;
console.log('building css');
console.time(colors.green('css built'));
isBuilding = true;
return concatFilesProm('css/**/*.css', 'dist/iD.css')
.then(function () {
console.timeEnd(colors.green('css built'));
isBuilding = false;
})
.catch(function (err) {
console.error(err);
process.exit(1);
});
};
};
function concatFilesProm(globPath, output) {
return new Promise(function (res, rej) {
glob(globPath, function (er, files) {
if (er) return rej(er);
concat(files, output, function (err) {
if (err) return rej(err);
res();
});
});
});
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化