Skip to content

Commit fe8f19f

Browse files
authored
Merge pull request #164 from SteffenKoehler/update-dependencies
Update dependencies
2 parents cb9cb17 + daa709b commit fe8f19f

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ gulp.task('compile-scss', function() {
2323
});
2424

2525
gulp.task('watch', function() {
26-
gulp.watch(Paths.SCSS, ['compile-scss']);
26+
gulp.watch(Paths.SCSS, gulp.series('compile-scss'));
2727
});
2828

2929
gulp.task('open', function() {
3030
gulp.src('index.html')
3131
.pipe(open());
3232
});
3333

34-
gulp.task('open-app', ['open', 'watch']);
34+
gulp.task('open-app', gulp.parallel('open', 'watch'));

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"example": "root"
88
},
99
"scripts": {
10-
"test": "echo \"Error: no test specified\" && exit 1"
10+
"open-app": "gulp open-app",
11+
"start": "npm run open-app",
12+
"test": "echo \"Error: no test specified\" && exit 1",
13+
"watch": "gulp watch"
1114
},
1215
"repository": {
1316
"type": "git",
@@ -37,12 +40,12 @@
3740
"url": "https://github.com/creativetimofficial/material-kit/issues"
3841
},
3942
"devDependencies": {
40-
"gulp": "^3.9.1",
41-
"gulp-autoprefixer": "^5.0.0",
43+
"gulp": "^4.0.2",
44+
"gulp-autoprefixer": "^6.1.0",
4245
"gulp-clean": "^0.4.0",
4346
"gulp-install": "^1.1.0",
44-
"gulp-sass": "^4.0.1",
45-
"gulp-sourcemaps": "^2.6.4",
47+
"gulp-sass": "^4.0.2",
48+
"gulp-sourcemaps": "^2.6.5",
4649
"gulp-open": "^3.0.1"
4750
},
4851
"homepage": "https://demos.creative-tim.com/material-kit/index.html"

0 commit comments

Comments
 (0)