Add 'package' script to build a webapp bundle for straight unzipping on a production server.

This commit is contained in:
David Baker 2016-02-10 15:35:06 +00:00
parent 98551c3f9a
commit 93f8fcbacc
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@ lib
key.pem
cert.pem
vector/components.css
packages/

View file

@ -17,6 +17,7 @@
"build:compile": "babel --source-maps -d lib src",
"build:bundle": "NODE_ENV=production webpack -p lib/vector/index.js vector/bundle.js",
"build": "npm run build:css && npm run build:compile && npm run build:bundle",
"package": "npm run build && mkdir packages && bestzip packages/vector-`git describe --dirty || echo unknown`.zip vector",
"start:js": "webpack -w src/vector/index.js vector/bundle.js",
"start:js:prod": "NODE_ENV=production webpack -w src/vector/index.js vector/bundle.js",
"start:skins:css": "catw \"src/skins/vector/css/**/*.css\" -o vector/components.css",
@ -49,6 +50,7 @@
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"bestzip": "^1.1.3",
"catw": "^1.0.1",
"css-raw-loader": "^0.1.1",
"http-server": "^0.8.4",