41 Star 193 Fork 158

北京凯特伟业科技有限公司 / jepaas-project-frontend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gulpfile.js 541 Bytes
一键复制 编辑 原始数据 按行查看 历史
黎明并不远 提交于 2023-01-05 02:54 . 1.增加流程待办插件
/*
* @Descripttion:
* @Author: qinyonglian
* @Date: 2020-03-13 14:59:19
* @LastEditors: qinyonglian
* @LastEditTime: 2020-03-14 09:55:58
*/
const gulp = require('gulp');// 打包工具
const del = require('del');// 删除文件
const runSequence = require('run-sequence');// 任务执行顺序
require('./config-pc/package/gulp/gulp-build');
// 主入口
gulp.task('build', (cb) => {
runSequence('clean', 'build-ext', 'build-resourse', 'build-rev', cb);
});
// 删除build,dist
gulp.task('clean', () => del([`${__dirname}/dist`]));
JavaScript
1
https://gitee.com/ketr/jepaas-project-frontend.git
git@gitee.com:ketr/jepaas-project-frontend.git
ketr
jepaas-project-frontend
jepaas-project-frontend
master

搜索帮助