From b25950090d2f0157124604da635149acc7d5ba8d Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Sat, 21 May 2016 16:49:00 -0700 Subject: [PATCH] docs(typings): install into globalDependencies, not globalDevDependencies --- public/docs/_examples/typings.json | 4 ++-- public/docs/ts/latest/guide/typescript-configuration.jade | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/public/docs/_examples/typings.json b/public/docs/_examples/typings.json index debe293225..7e0e18568d 100644 --- a/public/docs/_examples/typings.json +++ b/public/docs/_examples/typings.json @@ -1,7 +1,7 @@ { - "globalDevDependencies": { + "globalDependencies": { "core-js": "registry:dt/core-js#0.0.0+20160317120654", - "jasmine": "registry:dt/jasmine#2.2.0+20160412134438", + "jasmine": "registry:dt/jasmine#2.2.0+20160505161446", "node": "registry:dt/node#4.0.0+20160509154515" } } diff --git a/public/docs/ts/latest/guide/typescript-configuration.jade b/public/docs/ts/latest/guide/typescript-configuration.jade index a2454e98ce..ac4705a272 100644 --- a/public/docs/ts/latest/guide/typescript-configuration.jade +++ b/public/docs/ts/latest/guide/typescript-configuration.jade @@ -118,10 +118,10 @@ code-example(format=""). code-example(format=""). npm run typings list :marked - The following command installs the typings file for the Jasmine test library and updates the `typings.config` - so we that we get it automatically the next time. + The following command installs or updates the typings file for the Jasmine test library from the *DefinitelyTyped* repository + and updates the `typings.config` so we that we get it automatically the next time we install typings. code-example(format=""). - npm run typings -- install jasmine --global --save + npm run typings -- install dt~jasmine --save --global .l-sub-section :marked The [–– option](https://docs.npmjs.com/cli/run-script) is important;