Skip to content

Commit c4e35f2

Browse files
Daniel Wasserlaufmgechev
Daniel Wasserlauf
authored andcommitted
[gulpUpdate]: Updated Gulp dependency to fix build failure
1 parent a9fb84a commit c4e35f2

File tree

4 files changed

+1400
-312
lines changed

4 files changed

+1400
-312
lines changed

gulpfile.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
'use strict';
2-
var gulp = require('gulp');
3-
var eslint = require('gulp-eslint');
4-
var jasmine = require('gulp-jasmine');
1+
const gulp = require('gulp');
2+
const eslint = require('gulp-eslint');
3+
const jasmine = require('gulp-jasmine');
54

6-
gulp.task('test', function () {
5+
gulp.task('test', () => {
6+
'use strict';
77
return gulp.src('test/**/*.spec.js')
88
.pipe(jasmine());
99
});
1010

11-
gulp.task('lint', function () {
11+
gulp.task('lint', ()=> {
12+
'use strict';
1213
return gulp.src(['src/**/*.js', 'test/**/*.js'])
1314
.pipe(eslint())
1415
.pipe(eslint.format())
1516
.pipe(eslint.failAfterError());
1617
});
1718

18-
gulp.task('build', ['lint', 'test']);
19+
gulp.task('build', gulp.parallel(['lint', 'test']));

0 commit comments

Comments
 (0)