Skip to content

Commit c2dbfc2

Browse files
committed
Lint task scripts during build
1 parent 52b1b8b commit c2dbfc2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tasks/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ gulp.task('releasePrompt', () => {
5050
gulp.task('releaseBump', () => {
5151
return gulp.src(config.release.src)
5252
.pipe(bump({ version: newVersion }))
53-
.pipe(gulp.dest('./'))
53+
.pipe(gulp.dest('./'));
5454
});
5555

5656
gulp.task('releaseCommit', () => {

tasks/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import config from './config';
55
import { compileScript } from './helpers/script-helper';
66

77
gulp.task('script', [
8+
'lint:task',
89
'script:build',
910
'script:example',
1011
]);

0 commit comments

Comments
 (0)