From c3c813b4bb0f02fa75a078788f1aa4c49274c526 Mon Sep 17 00:00:00 2001 From: Rado Kirov Date: Thu, 30 Apr 2015 11:59:54 -0700 Subject: [PATCH] fix(quickstart): Update TS quickstart to use newly released TS 1.5.0 beta. --- public/docs/js/latest/quickstart.jade | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade index 0de9dabb79..774fb0ed4c 100644 --- a/public/docs/js/latest/quickstart.jade +++ b/public/docs/js/latest/quickstart.jade @@ -42,8 +42,7 @@ know to read this file so we don't need to configure them or add command-line options. pre.prettyprint - # We need to use an unreleased version of TypeScript - $ npm install -g mhegazy/typescript#v1.5-beta + $ npm install -g typescript@^1.5.0-beta $ tsc --watch // STEP 3 - Import Angular ########################## @@ -217,12 +216,16 @@ adds ES6 module loading functionality to browsers. p. - Add the System.js dependency in the <head> tag: + Add the System.js dependency in the <head> tag, so that + it looks like: pre.prettyprint.linenums code. <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://jspm.io/system@0.16.js"></script> + <script src="bundle/angular2.dev.js"></script> </head> p. @@ -230,8 +233,8 @@ pre.prettyprint.linenums code. - <script>System.import('app');</script> <my-app></my-app> + <script>System.import('app');</script> // STEP 8 - Run a local server ##########################