Use 'start' as npm dev command

This commit is contained in:
Jordan Eldredge 2017-03-24 17:52:59 +00:00
parent 07191b3191
commit fd04c186cf
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ Open `index.html` in your browser.
## Development
npm run serve
npm start
Open `http://localhost:8080/webpack-dev-server/` in your browser.

View file

@ -6,7 +6,7 @@
"scripts": {
"lint": "eslint .",
"build": "webpack --config=webpack.production.config.js",
"serve": "webpack-dev-server",
"start": "webpack-dev-server",
"weight": "npm run build && gzip-size built/winamp.js | pretty-bytes",
"test": "jest --coverage",
"travis-tests": "jest --coverage && npm run lint && npm run build",