1 Star 1 Fork 25

武林q传/p1

forked from ogn123/p1 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 530 Bytes
一键复制 编辑 原始数据 按行查看 历史
Fengziii 提交于 2018-04-03 21:55 . 1、更新自动编译设置
var gulp = require('gulp');
var del = require('del');
var ts = require('gulp-typescript');
var tsProject = ts.createProject('./code/client/tsconfig.json', { "noEmit": false });
gulp.task('clean', function (cb) {
return del(['./code/client/bin-debug/**/*']);
});
gulp.task('compile', ['clean'], function () {
return tsProject.src()
.pipe(tsProject())
.pipe(gulp.dest('./code/client/bin-debug'))
.on('error', function (err) {
throw Error(err.message);
});
});
gulp.task('default', ['clean', 'compile']);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/php_mysql/p1.git
git@gitee.com:php_mysql/p1.git
php_mysql
p1
p1
master

搜索帮助