Skip to content

Commit

Permalink
build(watch): remove bundle step
Browse files Browse the repository at this point in the history
  • Loading branch information
sebholstein committed Jun 11, 2016
1 parent 4a21bba commit 7e09969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const gulp = require('gulp');
const config = require('./config');

gulp.task('watch:srcFiles', () => {
gulp.watch(config.PATHS.tsSrcFiles, ['scripts:cjs', 'bundle:cjs']);
gulp.watch(config.PATHS.tsSrcFiles, ['scripts:cjs']);
});

gulp.task('watch:testfiles', () => {
Expand Down

0 comments on commit 7e09969

Please sign in to comment.