X Tutup
Skip to content

Commit 785900f

Browse files
kwalrathmhevery
authored andcommitted
DEVELOPER.md copyedit
1 parent 5ce5a87 commit 785900f

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

DEVELOPER.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
This document describes how to set up your development environment to build and test Angular, both
44
JS and Dart versions. It also explains the basic mechanics of using `git`, `node`, and `npm`.
55

6-
See the [contributing guidelines](https://github.com/angular/angular/blob/master/CONTRIBUTING.md)
7-
for how to contribute your own code to
8-
9-
1. [Prerequisite Software](#prerequisite-software)
10-
2. [Getting the Sources](#getting-the-sources)
11-
3. [Environment Variable Setup](#environment-variable-setup)
12-
4. [Installing NPM Modules and Dart Packages](#installing-npm-modules-and-dart-packages)
13-
5. [Running Tests Locally](#running-tests-locally)
14-
6. [Project Information](#project-information)
15-
7. [CI using Travis](#ci-using-travis)
16-
8. [Debugging](#debugging)
6+
* [Prerequisite Software](#prerequisite-software)
7+
* [Getting the Sources](#getting-the-sources)
8+
* [Environment Variable Setup](#environment-variable-setup)
9+
* [Installing NPM Modules and Dart Packages](#installing-npm-modules-and-dart-packages)
10+
* [Running Tests Locally](#running-tests-locally)
11+
* [Project Information](#project-information)
12+
* [CI using Travis](#ci-using-travis)
13+
* [Debugging](#debugging)
14+
15+
See the [contribution guidelines](https://github.com/angular/angular/blob/master/CONTRIBUTING.md)
16+
if you'd like to contribute to Angular.
1717

1818
## Prerequisite Software
1919

@@ -114,7 +114,7 @@ use in these instructions.
114114

115115
## Build commands
116116

117-
To build Angular and prepare tests run
117+
To build Angular and prepare tests run:
118118

119119
```shell
120120
$(npm bin)/gulp build
@@ -151,7 +151,7 @@ You can run just the unit tests as follows:
151151
* `$(npm bin)/gulp test.unit.cjs`: JS tests in NodeJS; runs in **watch mode**.
152152
* `$(npm bin)/gulp test.unit.dart`: Dart tests in Dartium; runs in **watch mode**.
153153

154-
If you prefer running tests in "single-run" mode rather than watch mode use
154+
If you prefer running tests in "single-run" mode rather than watch mode use:
155155

156156
* `$(npm bin)/gulp test.unit.js/ci`
157157
* `$(npm bin)/gulp test.unit.cjs/ci`
@@ -162,7 +162,7 @@ If you prefer running tests in "single-run" mode rather than watch mode use
162162
much easier to debug. `xit` and `xdescribe` can also be useful to exclude a test and a group of
163163
tests respectively.
164164

165-
**Note** for transpiler tests: The karma preprocessor is setup in a way so that after every test
165+
**Note for transpiler tests**: The karma preprocessor is setup in a way so that after every test
166166
run the transpiler is reloaded. With that it is possible to make changes to the preprocessor and
167167
run the tests without exiting karma (just touch a test file that you would like to run).
168168

0 commit comments

Comments
 (0)
X Tutup