@@ -61,29 +61,29 @@ Change to the TypeScript directory:
6161cd TypeScript
6262```
6363
64- Install Gulp tools and dev dependencies:
64+ Install Jake tools and dev dependencies:
6565
6666``` bash
67- npm install -g gulp
67+ npm install -g jake
6868npm install
6969```
7070
7171Use one of the following to build and test:
7272
7373```
74- gulp local # Build the compiler into built/local
75- gulp clean # Delete the built compiler
76- gulp LKG # Replace the last known good with the built one.
74+ jake local # Build the compiler into built/local
75+ jake clean # Delete the built compiler
76+ jake LKG # Replace the last known good with the built one.
7777 # Bootstrapping step to be executed when the built compiler reaches a stable state.
78- gulp tests # Build the test infrastructure using the built compiler.
79- gulp runtests # Run tests using the built compiler and test infrastructure.
78+ jake tests # Build the test infrastructure using the built compiler.
79+ jake runtests # Run tests using the built compiler and test infrastructure.
8080 # You can override the host or specify a test for this command.
8181 # Use host=<hostName> or tests=<testPath>.
82- gulp runtests-browser # Runs the tests using the built run.js file. Syntax is gulp runtests. Optional
82+ jake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional
8383 parameters 'host=', 'tests=[regex], reporter=[list|spec|json|<more>]'.
84- gulp baseline-accept # This replaces the baseline test results with the results obtained from gulp runtests.
85- gulp lint # Runs tslint on the TypeScript source.
86- gulp help # List the above commands.
84+ jake baseline-accept # This replaces the baseline test results with the results obtained from jake runtests.
85+ jake lint # Runs tslint on the TypeScript source.
86+ jake help # List the above commands.
8787```
8888
8989
0 commit comments