diff options
author | Yukai Huang | 2016-12-10 22:12:07 +0800 |
---|---|---|
committer | Yukai Huang | 2016-12-10 22:12:07 +0800 |
commit | ed83dfc862768572eab0c2aed629b1700ac9e224 (patch) | |
tree | 417752b240ba9f6cc26cfeba63b69e04d47b2bc8 | |
parent | 65a1a62cc0791cbf88a626d3cccf6fbe7bd1966e (diff) |
Rename npm script
webpack scripts are meant to “build” assets, so place them under the same namespace
* dev => build:dev
* build => build:prod
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | bin/heroku | 2 | ||||
-rw-r--r-- | package.json | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -53,7 +53,7 @@ Get started 2. Enter the directory and type `bin/setup`, which will install npm/bower dependencies and create configs. The setup script is written in Bash, you would need bash as a prerequisite. 3. Setup the configs, see more below 4. Setup environment variables which will overwrite the configs -5. Build front-end bundle by `npm run build` (use `npm run dev` if you are in development) +5. Build front-end bundle by `npm run build:prod` (use `npm run build:dev` if you are in development) 6. Run the server as you like (node, forever, pm2) Upgrade guide @@ -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 diff --git a/package.json b/package.json index eab454ad..4c7cbb1c 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "main": "app.js", "license": "MIT", "scripts": { - "build": "webpack --config webpack.production.js --progress --colors", - "dev": "webpack --config webpack.config.js --progress --colors --watch", + "build:dev": "webpack --config webpack.config.js --progress --colors --watch", + "build:prod": "webpack --config webpack.production.js --progress --colors", "assets:install": "bower install", "postinstall": "bin/heroku", "start": "node app.js" |