6 Star 22 Fork 5

方增鸿/html5_Battle City

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 537 Bytes
一键复制 编辑 原始数据 按行查看 历史
方增鸿 提交于 2015-09-29 18:07 . playing 添加游戏场景
var gulp = require('gulp'),
ts = require('gulp-typescript'),
plumber = require('gulp-plumber'),
merge = require('merge2');
var tsProject = ts.createProject({
declaration: true,
noExternalResolve: true,
target: "es5"
});
var tspath = 'tsjs/*.ts';
gulp.task('buildts', function () {
var tsResult = gulp.src(tspath)
.pipe(plumber())
.pipe(ts(tsProject));
return tsResult.js.pipe(gulp.dest('js'));
});
gulp.task('watch', ['buildts'], function () {
gulp.watch(tspath, ['buildts']);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lred/html5_Battle-City.git
[email protected]:lred/html5_Battle-City.git
lred
html5_Battle-City
html5_Battle City
master

搜索帮助