From 09e6fc16521bf54d0a16ec1d408a113ef9365ddb Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 22 Feb 2017 19:10:12 -0500 Subject: [PATCH] Revert "Added dist-firefox gulp task to add applications section to manifest" This reverts commit d06744f73960a533551819b39a054a82a43d4f2d. --- gulpfile.js | 17 +---------------- package.json | 3 +-- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 69fb36ab52..ccef679277 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -10,8 +10,7 @@ browserify = require('browserify'), source = require('vinyl-source-stream'), googleWebFonts = require('gulp-google-webfonts'), - webpack = require('webpack-stream') - jeditor = require("gulp-json-editor"); + webpack = require('webpack-stream'); var paths = {}; paths.dist = './dist/'; @@ -205,20 +204,6 @@ gulp.task('dist', ['build'], function (cb) { cb); }); -gulp.task('dist-firefox', ['dist'], function (cb) { - gulp.src(paths.dist + 'manifest.json') - .pipe(jeditor(function (manifest) { - manifest.applications = { - gecko: { - id: "addon@bitwarden.com", - strict_min_version: "42.0" - } - }; - return manifest; - })) - .pipe(gulp.dest(paths.dist)); -}); - gulp.task('webfonts', function () { return gulp.src('./webfonts.list') .pipe(googleWebFonts({})) diff --git a/package.json b/package.json index 57f4feb733..63aa53cdb3 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "gulp-google-webfonts": "0.0.14", "ng-infinite-scroll": "1.3.0", "node-forge": "0.7.0", - "webpack-stream": "3.2.0", - "gulp-json-editor": "2.2.1" + "webpack-stream": "3.2.0" } }