@@ -61,29 +61,29 @@ Change to the TypeScript directory:
61
61
cd TypeScript
62
62
```
63
63
64
- Install Gulp tools and dev dependencies:
64
+ Install Jake tools and dev dependencies:
65
65
66
66
``` bash
67
- npm install -g gulp
67
+ npm install -g jake
68
68
npm install
69
69
```
70
70
71
71
Use one of the following to build and test:
72
72
73
73
```
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.
77
77
# 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.
80
80
# You can override the host or specify a test for this command.
81
81
# 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
83
83
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.
87
87
```
88
88
89
89
0 commit comments