From 253d29badf25f32d860d146bf2e31ea27e28673f Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 25 Jun 2015 11:28:07 -0700 Subject: [PATCH] fix(quickstart): missing tsd transitive deps --- public/docs/js/latest/quickstart.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade index 530e381d6d..a5feac8b2a 100644 --- a/public/docs/js/latest/quickstart.jade +++ b/public/docs/js/latest/quickstart.jade @@ -26,8 +26,8 @@ To fetch one of the type definitions to the local directory, we use the tsd package manager. code-example. - $ npm install -g tsd - $ tsd query angular2 --action install + $ npm install -g tsd@^0.6.0 + $ tsd install angular2 es6-promise rx rx-lite p. Next, create two empty files, index.html and app.ts, both at the root of the project: @@ -181,7 +181,7 @@ <head> <title>Angular 2 Quickstart</title> <script src="https://github.jspm.io/jmcriffey/bower-traceur-runtime@0.0.87/traceur-runtime.js"></script> - <script src="https://code.angularjs.org/2.0.0-alpha.23/angular2.dev.js"></script> + <script src="https://code.angularjs.org/2.0.0-alpha.28/angular2.dev.js"></script> </head> <body>