Skip to content

Commit

Permalink
Lint task scripts during build
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchin committed Sep 28, 2015
1 parent 52b1b8b commit c2dbfc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ gulp.task('releasePrompt', () => {
gulp.task('releaseBump', () => {
return gulp.src(config.release.src)
.pipe(bump({ version: newVersion }))
.pipe(gulp.dest('./'))
.pipe(gulp.dest('./'));
});

gulp.task('releaseCommit', () => {
Expand Down
1 change: 1 addition & 0 deletions tasks/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import config from './config';
import { compileScript } from './helpers/script-helper';

gulp.task('script', [
'lint:task',
'script:build',
'script:example',
]);
Expand Down

0 comments on commit c2dbfc2

Please sign in to comment.