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:
parent
240b0a2f70
commit
52f0ea5ddd
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue