1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-26 12:25:20 +01:00

remove _execute_sidebar_action for chrome and edge

This commit is contained in:
Kyle Spearrin 2017-12-04 09:15:28 -05:00
parent 61fb18ec4b
commit 6cc78f5b9b

View File

@ -70,6 +70,7 @@ gulp.task('dist:chrome', (cb) => {
delete manifest['-ms-preload']; delete manifest['-ms-preload'];
delete manifest.applications; delete manifest.applications;
delete manifest.sidebar_action; delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest; return manifest;
}); });
}); });
@ -102,6 +103,7 @@ function edgeCopyBuild(source, dest) {
.pipe(gulpif('manifest.json', jeditor((manifest) => { .pipe(gulpif('manifest.json', jeditor((manifest) => {
delete manifest.applications; delete manifest.applications;
delete manifest.sidebar_action; delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest; return manifest;
}))) })))
.pipe(gulp.dest(dest)) .pipe(gulp.dest(dest))