Merge pull request #491 from MetaMask/FixChromeBuild

Fix chrome build
This commit is contained in:
Dan Finlay 2016-07-26 16:51:54 -07:00 committed by GitHub
commit 79ce99db07
1 changed files with 2 additions and 2 deletions

View File

@ -57,13 +57,13 @@ gulp.task('manifest:cleanup', function() {
delete json.applications
return json
}))
.pipe(gulp.dest('./dist/chrome', { overwrite: false }))
.pipe(gulp.dest('./dist/chrome', { overwrite: true }))
})
gulp.task('copy:chrome', gulp.series(
copyTask({
source: './dist/firefox',
destination: './dist/chrome',
pattern: '**/[^manifest]*'
pattern: '**/*'
}), 'manifest:cleanup'))
gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'copy:chrome'))
gulp.task('copy:watch', function(){