docs(examples): Fix deprecation warning in example package.json start scripts.

closes #898
Stop the example start scripts from outputting deprecation warnings.
As suggested, replace `concurrent rnpm run` with `concurrently npm run`.
This commit is contained in:
Mike Buhot 2016-02-29 16:33:02 +10:00 committed by Ward Bell
parent 240b0a2f70
commit 52f0ea5ddd
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
"description": "Master package.json, the superset of all dependencies for all of the _example package.json files.",
"main": "index.js",
"scripts": {
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",

View File

@ -2,7 +2,7 @@
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",

View File

@ -5,7 +5,7 @@
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" "
},
"license": "ISC",
"dependencies": {