Skip to content

Commit

Permalink
Merge pull request #164 from SteffenKoehler/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
groovemen authored Oct 23, 2019
2 parents cb9cb17 + daa709b commit fe8f19f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ gulp.task('compile-scss', function() {
});

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

gulp.task('open', function() {
gulp.src('index.html')
.pipe(open());
});

gulp.task('open-app', ['open', 'watch']);
gulp.task('open-app', gulp.parallel('open', 'watch'));
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"example": "root"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"open-app": "gulp open-app",
"start": "npm run open-app",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "gulp watch"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -37,12 +40,12 @@
"url": "https://github.com/creativetimofficial/material-kit/issues"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-clean": "^0.4.0",
"gulp-install": "^1.1.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-open": "^3.0.1"
},
"homepage": "https://demos.creative-tim.com/material-kit/index.html"
Expand Down

0 comments on commit fe8f19f

Please sign in to comment.