From 89bd00844592fac29667f830cea16943d4f0892b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 21 Jan 2016 13:30:03 -0800 Subject: [PATCH] docs(DEVELOPER.md): update framework developer instructions --- DEVELOPER.md | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index a687c53a05..cc3bbc993a 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -23,7 +23,16 @@ if you'd like to contribute to Angular. Before you can build and test Angular, you must install and configure the following products on your development machine: -* [Dart](https://www.dartlang.org) (version ` >=1.12.0 <2.0.0`), specifically the Dart-SDK and +* [Git](http://git-scm.com) and/or the **GitHub app** (for [Mac](http://mac.github.com) or + [Windows](http://windows.github.com)); [GitHub's Guide to Installing + Git](https://help.github.com/articles/set-up-git) is a good source of information. + +* [Node.js](http://nodejs.org), (version `>=5.4.1 <6`) which is used to run a development web server, + run tests, and generate distributable files. We also use Node's Package Manager, `npm` + (version `>=3.5.3 <4.0`), which comes with Node. Depending on your system, you can install Node either from + source or as a pre-packaged bundle. + +* *Optional*: [Dart](https://www.dartlang.org) (version ` >=1.13.2 <2.0.0`), specifically the Dart-SDK and Dartium (a version of [Chromium](http://www.chromium.org) with native support for Dart through the Dart VM). One of the **simplest** ways to get both is to install the **Dart Editor bundle**, which includes the editor, SDK and Dartium. See the [Dart tools](https://www.dartlang.org/tools) @@ -33,19 +42,6 @@ following products on your development machine: to the `Path` (e.g. `path-to-dart-sdk-folder\bin`) and a new `DARTIUM_BIN` environment variable must be created, pointing to the executable (e.g. `path-to-dartium-folder\chrome.exe).` -* [Git](http://git-scm.com) and/or the **GitHub app** (for [Mac](http://mac.github.com) or - [Windows](http://windows.github.com)); [GitHub's Guide to Installing - Git](https://help.github.com/articles/set-up-git) is a good source of information. - -* [Node.js](http://nodejs.org), (version `>=4.2.1 <5`) which is used to run a development web server, - run tests, and generate distributable files. We also use Node's Package Manager, `npm` - (version `>=2.14.7 <3.0`), which comes with Node. Depending on your system, you can install Node either from - source or as a pre-packaged bundle. - -* [Chrome Canary](https://www.google.com/chrome/browser/canary.html), a version of Chrome with - bleeding edge functionality, built especially for developers (and early adopters). - -* [Bower](http://bower.io/). ## Getting the Sources