Skip to content

Commit

Permalink
Update gulp task
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Nov 28, 2016
1 parent f52b832 commit 4666c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const clean = require('gulp-clean');
const tsProject = tsc.createProject('tsconfig.json');

gulp.task('clean', () => {
const tsResult = gulp.src(['./src/**/*.d.ts', './src/**/*.js', './src/**/*.js', './src/**/*.js.map']);
return tsResult.pipe(clean());
return gulp.src(['./src/**/*.d.ts', './src/**/*.js', './src/**/*.js', './src/**/*.js.map'])
.pipe(clean());
});

gulp.task('release', ['clean'], () => {
Expand Down

0 comments on commit 4666c63

Please sign in to comment.