Commit ae1f3648 authored by Kahlil Lechelt's avatar Kahlil Lechelt

use consisten naming convention for npm tasks and use npm-run-all for docker task

parent a1eebf7b
......@@ -7,8 +7,9 @@
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"docker-build": "docker build -t ng2-quickstart .",
"docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart",
"docker:build": "docker build -t ng2-quickstart .",
"docker:run": "docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart",
"docker": "npm-run-all docker:build docker:run",
"postinstall": "typings install"
},
"license": "ISC",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment