From ed83dfc862768572eab0c2aed629b1700ac9e224 Mon Sep 17 00:00:00 2001 From: Yukai Huang Date: Sat, 10 Dec 2016 22:12:07 +0800 Subject: Rename npm script webpack scripts are meant to “build” assets, so place them under the same namespace * dev => build:dev * build => build:prod --- bin/heroku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/heroku') diff --git a/bin/heroku b/bin/heroku index 12f9cc17..9c06c274 100755 --- a/bin/heroku +++ b/bin/heroku @@ -31,5 +31,5 @@ EOF cp public/js/config.js.example public/js/config.js # build app - npm run build + npm run build:prod fi -- cgit v1.2.3 From 9e6fd505e12c21e60347501132e1f473b61942b3 Mon Sep 17 00:00:00 2001 From: Yukai Huang Date: Sun, 11 Dec 2016 10:31:51 +0800 Subject: Remove bower occurences --- bin/heroku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/heroku') diff --git a/bin/heroku b/bin/heroku index 9c06c274..f30b2b23 100755 --- a/bin/heroku +++ b/bin/heroku @@ -3,7 +3,7 @@ set -e if [ "$BUILD_ASSETS" = true ]; then - BUILD_ASSETS=false npm install && npm run assets:install + BUILD_ASSETS=false npm install # setup config files cat << EOF > .sequelizerc -- cgit v1.2.3