diff options
author | Max Wu | 2016-12-11 23:22:17 +0800 |
---|---|---|
committer | GitHub | 2016-12-11 23:22:17 +0800 |
commit | 5eec050360fe748eb16f4db6397371466d72421a (patch) | |
tree | 8cb035ed94e640eb55659f1dec9924f9b3d4da02 /bin | |
parent | ecb956f515a4a9fc661e0724d694fc1ed093dcaa (diff) | |
parent | 9e6fd505e12c21e60347501132e1f473b61942b3 (diff) |
Merge pull request #274 from hackmdio/drop-bower
Drop bower
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/heroku | 4 | ||||
-rwxr-xr-x | bin/setup | 10 |
2 files changed, 4 insertions, 10 deletions
@@ -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 @@ -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 @@ -16,12 +16,6 @@ EOF exit 0 fi -if ! type bower > /dev/null -then - echo "bower is not installed, install via npm" - npm install -g bower -fi - echo "copy config files" if [ ! -f config.json ]; then cp config.json.example config.json @@ -35,8 +29,8 @@ if [ ! -f .sequelizerc ]; then cp .sequelizerc.example .sequelizerc fi -echo "install npm and bower packages" -BUILD_ASSETS=false npm install && bower install +echo "install npm packages" +BUILD_ASSETS=false npm install cat << EOF |