Skip to content

Commit

Permalink
feat(gulp): add build task
Browse files Browse the repository at this point in the history
  • Loading branch information
wzr1337 committed Jan 11, 2017
1 parent 0ebf137 commit fee97d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ gulp.task('watch', ['typescript'], () => {
})
});

gulp.task("default", ["typescript"], () => {
gulp.task("build", ["typescript"], () => {
return;
});

gulp.task("default", ["build"], () => {
return;
});

0 comments on commit fee97d8

Please sign in to comment.