Update to webpack 4 + misc build process changes

This commit is contained in:
hensm
2018-11-13 21:51:09 +00:00
parent f23e1f68c2
commit c63531cdce
12 changed files with 3669 additions and 3332 deletions

View File

@@ -3,7 +3,9 @@
"postinstall": "npm run postinstall:app && npm run postinstall:ext",
"postinstall:app": "npm install ./app --prefix ./app",
"postinstall:ext": "npm install ./ext --prefix ./ext",
"build": "npm run build --prefix ./app && npm run build --prefix ./ext --",
"build": "npm run build:app && npm run build:ext",
"build:app": "npm run build --prefix ./app",
"build:ext": "npm run build --prefix ./ext",
"test": "jasmine --config=jasmine.json",
"install-manifest": "npm run install-manifest --prefix ./app"
},