1 Star 0 Fork 25

苏州第八灵感网络科技有限公司/p1

forked from Fengziii/p1 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 685 Bytes
一键复制 编辑 原始数据 按行查看 历史
var gulp = require('gulp');
var del = require('del');
var ts = require('gulp-typescript');
var sourcemaps = require('gulp-sourcemaps');
var tsProject = ts.createProject('./code/client/tsconfig.json');
gulp.task('clean', function (cb) {
console.log("开始清理");
del(['./code/client/bin-debug/**/*'], cb);
});
gulp.task('compile', function () {
console.log("开始编译");
return tsProject.src()
.pipe(sourcemaps.init())
.pipe(tsProject())
.pipe(sourcemaps.write())
.pipe(gulp.dest('./code/client/bin-debug'))
});
gulp.task('test', ['clean', 'compile'], function () {
console.log("开始测试");
});
gulp.task('default', ['clean', 'compile', 'test']);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/goods_project/p1.git
[email protected]:goods_project/p1.git
goods_project
p1
p1
master

搜索帮助