Skip to content

Commit 6867130

Browse files
committed
Resolving Travis error again
1 parent acd4a16 commit 6867130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gulp.task('build-script', ['test'], () => (
4848
.pipe(gulp.dest('./lib/'))
4949
));
5050

51-
gulp.task('build-script-web', ['test'], () => (
51+
gulp.task('build-script-web', ['build-script'], () => (
5252
gulp.src(['./src/index.js'])
5353
.pipe(webpackStream(webpackConfig('web'), webpack))
5454
.pipe(header(banner, { pkg }))
@@ -84,7 +84,7 @@ gulp.task('compare-css-output', ['build-style', 'build-style-less'], () => (
8484
run('cmp .css-compare/less/react-checkbox-tree.css .css-compare/scss/react-checkbox-tree.css').exec()
8585
));
8686

87-
gulp.task('build', ['build-script', 'build-script-web', 'compare-css-output']);
87+
gulp.task('build', ['build-script-web', 'compare-css-output']);
8888

8989
gulp.task('build-examples-style', () => (
9090
gulp.src('./examples/src/scss/**/*.scss')

0 commit comments

Comments
 (0)