1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

update angular and libs

This commit is contained in:
Kyle Spearrin
2018-09-11 17:30:44 -04:00
parent 67b187f884
commit 335e0dd575
7 changed files with 1559 additions and 1949 deletions

View File

@@ -24,6 +24,10 @@ function webfonts() {
.pipe(gulp.dest(paths.cssDir));
};
function cleanupNodeTypes() {
return del(['./jslib/node_modules/@types/node/']);
}
function version() {
fs.writeFileSync(paths.build + 'version.json', '{"version":"' + package.version + '"}');
}
@@ -31,5 +35,7 @@ function version() {
gulp.task('clean', clean);
gulp.task('webfonts', ['clean'], webfonts);
gulp.task('prebuild', ['webfonts']);
gulp.task('cleanupNodeTypes', cleanupNodeTypes);
gulp.task('predist', ['cleanupNodeTypes']);
gulp.task('version', version);
gulp.task('postdist', ['version']);