1 Star 0 Fork 162

不争馒头0_0/jepaas-project-frontend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 418 Bytes
一键复制 编辑 原始数据 按行查看 历史
吝志超 提交于 2019-08-27 19:05 . 前端开源项目
const gulp = require('gulp');//打包工具
const del = require('del');//删除文件
const runSequence = require('gulp-run-sequence');//任务执行顺序
require('./config/package/gulp/gulp-build');
//主入口
gulp.task('build', function (cb) {
runSequence('clean', 'build-ext', 'build-resourse','build-rev',cb);
});
//删除build,dist
gulp.task('clean', function () {
return del([__dirname + '/dist']);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jinghua81/jepaas-project-frontend.git
git@gitee.com:jinghua81/jepaas-project-frontend.git
jinghua81
jepaas-project-frontend
jepaas-project-frontend
master

搜索帮助