remove bower and fixed modernizr dependency

This commit is contained in:
Mike Ng
2018-01-24 15:10:33 +04:00
parent 9cfd8349ce
commit c3a695b732
7 changed files with 4 additions and 28 deletions

View File

@@ -17,12 +17,7 @@ gulp.task('clean:assetsPath', function(done){
return del([config.paths.build + '/**/*'], done);
});
gulp.task('install-bower-dependencies', function(){
return gulp.src(['./bower.json'])
.pipe(install());
});
gulp.task('build-dependencies', ['install-bower-dependencies'], function(){
gulp.task('build-dependencies', function () {
gulp.start('build');
gulp.start('build-css');
});