1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-22 17:33:23 +01:00

Install deps. Fix chrome/firefox typo.

This commit is contained in:
Kevin Serrano 2016-09-01 15:01:45 -07:00
parent a76e198c9c
commit 168b4c5bc0
2 changed files with 7 additions and 3 deletions

View File

@ -16,6 +16,8 @@ var eslint = require('gulp-eslint')
var fs = require('fs') var fs = require('fs')
var path = require('path') var path = require('path')
var manifest = require('./app/manifest.json') var manifest = require('./app/manifest.json')
var gulpif = require('gulp-if')
var replace = require('gulp-replace')
// browser reload // browser reload
@ -72,8 +74,8 @@ gulp.task('copy:root', copyTask({
pattern: '/*', pattern: '/*',
})) }))
gulp.task('manifest:cleanup', function() { gulp.task('manifest:chrome', function() {
return gulp.src('./dist/firefox/manifest.json') return gulp.src('./dist/chrome/manifest.json')
.pipe(jsoneditor(function(json) { .pipe(jsoneditor(function(json) {
delete json.applications delete json.applications
return json return json
@ -81,7 +83,7 @@ gulp.task('manifest:cleanup', function() {
.pipe(gulp.dest('./dist/chrome', { overwrite: true })) .pipe(gulp.dest('./dist/chrome', { overwrite: true }))
}) })
gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'manifest:cleanup')) gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'manifest:chrome'))
gulp.task('copy:watch', function(){ gulp.task('copy:watch', function(){
gulp.watch(['./app/{_locales,images}/*', './app/scripts/chromereload.js', './app/*.{html,json}'], gulp.series('copy')) gulp.watch(['./app/{_locales,images}/*', './app/scripts/chromereload.js', './app/*.{html,json}'], gulp.series('copy'))
}) })

View File

@ -94,8 +94,10 @@
"del": "^2.2.0", "del": "^2.2.0",
"gulp": "github:gulpjs/gulp#4.0", "gulp": "github:gulpjs/gulp#4.0",
"gulp-brfs": "^0.1.0", "gulp-brfs": "^0.1.0",
"gulp-if": "^2.0.1",
"gulp-json-editor": "^2.2.1", "gulp-json-editor": "^2.2.1",
"gulp-livereload": "^3.8.1", "gulp-livereload": "^3.8.1",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0", "gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7", "gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5", "gulp-watch": "^4.3.5",