1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-28 07:49:41 +01:00

update gulp to 4.0.0

This commit is contained in:
Kyle Spearrin 2018-11-27 12:22:18 -05:00
parent 5a40728b0e
commit 054f4aef9e
3 changed files with 1351 additions and 593 deletions

View File

@ -25,7 +25,7 @@ function cleanupAotIssue() {
return del(['./node_modules/@types/uglify-js/node_modules/source-map/source-map.d.ts']); return del(['./node_modules/@types/uglify-js/node_modules/source-map/source-map.d.ts']);
} }
gulp.task('clean', clean); exports.clean = clean;
gulp.task('cleanupAotIssue', cleanupAotIssue); exports.cleanupAotIssue = cleanupAotIssue;
gulp.task('webfonts', ['clean'], webfonts); exports.webfonts = gulp.series(clean, webfonts);
gulp.task('prebuild:renderer', ['webfonts', 'cleanupAotIssue']); exports['prebuild:renderer'] = gulp.parallel(webfonts, cleanupAotIssue);;

1924
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -212,7 +212,7 @@
"extract-text-webpack-plugin": "next", "extract-text-webpack-plugin": "next",
"file-loader": "^2.0.0", "file-loader": "^2.0.0",
"font-awesome": "4.7.0", "font-awesome": "4.7.0",
"gulp": "^3.9.1", "gulp": "^4.0.0",
"gulp-google-webfonts": "^2.0.0", "gulp-google-webfonts": "^2.0.0",
"html-loader": "^0.5.5", "html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0", "html-webpack-plugin": "^3.2.0",