From 52f0ea5dddabc98196d3b1117cd2e59c243aabdd Mon Sep 17 00:00:00 2001 From: Mike Buhot Date: Mon, 29 Feb 2016 16:33:02 +1000 Subject: [PATCH] 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`. --- public/docs/_examples/package.json | 2 +- public/docs/_examples/quickstart/ts/package.1.json | 2 +- public/docs/_examples/styleguide/package.1.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/_examples/package.json b/public/docs/_examples/package.json index 937d7617e6..41aa4b9e99 100644 --- a/public/docs/_examples/package.json +++ b/public/docs/_examples/package.json @@ -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", diff --git a/public/docs/_examples/quickstart/ts/package.1.json b/public/docs/_examples/quickstart/ts/package.1.json index 1e5ad65f94..a7e51224eb 100644 --- a/public/docs/_examples/quickstart/ts/package.1.json +++ b/public/docs/_examples/quickstart/ts/package.1.json @@ -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", diff --git a/public/docs/_examples/styleguide/package.1.json b/public/docs/_examples/styleguide/package.1.json index a40459f717..0cf4d51bc0 100644 --- a/public/docs/_examples/styleguide/package.1.json +++ b/public/docs/_examples/styleguide/package.1.json @@ -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": {