Update build steps

This commit is contained in:
Paulus Schoutsen 2016-06-14 18:22:45 -07:00
parent e63bcc1567
commit 0e6dc25fcd
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 02fb25ccb1479c6fffc181d8a06ed7fe9b675d5f
Subproject commit e3e3f4c97cd04bcb7fb1d5b5ea2ba98042b0ae71

View File

@ -12,9 +12,9 @@
"js_prod": "BUILD_DEV=0 webpack --color --progress -p",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 webpack --color --progress -p",
"frontend_html": "vulcanize --inline-css --inline-scripts --strip-comments --strip-exclude bower_components/font-roboto/roboto.html src/home-assistant.html > build/frontend.vulcan.html && node script/minify.js",
"frontend_prod": "npm run js_prod && bower install && npm run frontend_html",
"frontend_demo": "npm run js_demo && bower install && npm run frontend_html",
"setup_js_dev": "npm install && cd node_modules && rm -rf home-assistant-js && git clone https://github.com/balloob/home-assistant-js.git && cd home-assistant-js && npm install",
"frontend_prod": "npm run js_prod && npm run frontend_html",
"frontend_demo": "npm run js_demo && npm run frontend_html",
"setup_js_dev": "git submodule init && git submodule update && cd home-assistant-js && npm install",
"test": "eslint src"
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",