File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ gulp.task('compile-scss', function() {
2323} ) ;
2424
2525gulp . task ( 'watch' , function ( ) {
26- gulp . watch ( Paths . SCSS , [ 'compile-scss' ] ) ;
26+ gulp . watch ( Paths . SCSS , gulp . series ( 'compile-scss' ) ) ;
2727} ) ;
2828
2929gulp . 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' ) ) ;
Original file line number Diff line number Diff line change 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" ,
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"
You can’t perform that action at this time.
0 commit comments