Skip to content

Commit

Permalink
npm start to start the dev server
Browse files Browse the repository at this point in the history
Just a small alias to make launching the service more convenient.
  • Loading branch information
anvaka committed Apr 8, 2017
1 parent 9f3e787 commit 6f7c03d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions template/package.json
Expand Up @@ -6,6 +6,7 @@
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "node build/dev-server.js",
"build": "node build/build.js"{{#unit}},
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run"{{/unit}}{{#e2e}},
"e2e": "node test/e2e/runner.js"{{/e2e}}{{#if_or unit e2e}},
Expand Down

1 comment on commit 6f7c03d

@alxtz
Copy link

@alxtz alxtz commented on 6f7c03d Dec 29, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if npm run start is actually needed.
Is it possible for a user to not checkout the package.json before running npm run start?
(Just curious, maybe it's for running your dev script on heroku ... ?)

Please sign in to comment.