1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 18:43:25 +00:00

Change webpack to only copy the html files to popup/app. Update readme with more instructions for building. (#336)

This commit is contained in:
Oscar Hinton
2017-10-29 13:58:50 +01:00
committed by Kyle Spearrin
parent 5439a2b33e
commit 77f9270131
3 changed files with 23 additions and 8 deletions

View File

@@ -3,9 +3,9 @@
"version": "0.0.0",
"scripts": {
"start:firefox": "web-ext run --source-dir ./dist/",
"dev": "webpack --config webpack.dev.js",
"dev:watch": "webpack --config webpack.dev.js --watch",
"prod": "webpack --config webpack.prod.js"
"dev": "gulp build && webpack --config webpack.dev.js",
"dev:watch": "gulp build && webpack --config webpack.dev.js --watch",
"prod": "gulp build && webpack --config webpack.prod.js"
},
"devDependencies": {
"angular": "1.6.6",