webext tools for firefox

This commit is contained in:
Kyle Spearrin 2017-08-31 15:07:39 -04:00
parent 44f1ce621d
commit cb7c35ad77
2 changed files with 30 additions and 5 deletions

View File

@ -10,8 +10,10 @@
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'),
jeditor = require("gulp-json-editor"),
gulpUtil = require('gulp-util'),
child = require('child_process');
var paths = {};
paths.dist = './dist/';
@ -254,6 +256,23 @@ gulp.task('dist-edge', ['dist:edge'], function (cb) {
gulp.task('webfonts', function () {
return gulp.src('./webfonts.list')
.pipe(googleWebFonts({}))
.pipe(gulp.dest(paths.webfontsDir))
;
.pipe(gulp.dest(paths.webfontsDir));
});
function npmCommand(commands, cb) {
var npmLogger = (buffer) => {
buffer.toString()
.split(/\n/)
.forEach((message) => gulpUtil.log(message));
};
var npmCommand = process.platform === 'win32' ? 'npm.cmd' : 'npm';
var npmChild = child.spawn(npmCommand, commands);
npmChild.stdout.on('data', npmLogger);
npmChild.stderr.on('data', npmLogger);
npmChild.stderr.on('close', cb);
return npmChild;
}
gulp.task('webext:firefox', function (cb) {
return npmCommand(['run', 'start:firefox'], cb);
});

View File

@ -1,6 +1,9 @@
{
"name": "bitwarden",
"version": "0.0.0",
"scripts": {
"start:firefox": "web-ext run --source-dir ./dist/"
},
"devDependencies": {
"jquery": "2.2.4",
"bootstrap": "3.3.7",
@ -34,6 +37,9 @@
"node-forge": "0.7.1",
"webpack-stream": "4.0.0",
"gulp-json-editor": "2.2.1",
"papaparse": "4.3.5"
"papaparse": "4.3.5",
"web-ext": "2.0.0",
"child_process": "1.0.2",
"gulp-util": "3.0.8"
}
}