You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
22
22
23
-
**Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.**
23
+
**Which versions of AngularJS, and which browser / OS are affected by this issue? Did this work in previous versions of AngularJS? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.**
***Do not use namespaces**: Instead, wrap the entire angular code base in an anonymous closure and
195
+
***Do not use namespaces**: Instead, wrap the entire AngularJS code base in an anonymous closure and
196
196
export our API explicitly rather than implicitly.
197
197
* Wrap all code at **100 characters**.
198
198
* Instead of complex inheritance hierarchies, we **prefer simple objects**. We use prototypal
@@ -209,7 +209,9 @@ We have very precise rules over how our git commit messages can be formatted. T
209
209
readable messages** that are easy to follow when looking through the **project history**. But also,
210
210
we use the git commit messages to **generate the AngularJS change log**.
211
211
212
-
The commit message formatting can be added using a typical git workflow or through the use of a CLI wizard ([Commitizen](https://github.com/commitizen/cz-cli)). To use the wizard, run `npm run commit`in your terminal after staging your changes in git.
212
+
The commit message formatting can be added using a typical git workflow or through the use of a CLI
213
+
wizard ([Commitizen](https://github.com/commitizen/cz-cli)). To use the wizard, run `yarn run commit`
214
+
in your terminal after staging your changes in git.
213
215
214
216
### Commit Message Format
215
217
Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
@@ -229,7 +231,8 @@ Any line of the commit message cannot be longer 100 characters! This allows the
229
231
to read on GitHub as well as in various git tools.
230
232
231
233
### Revert
232
-
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
234
+
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit.
235
+
In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
233
236
234
237
### Type
235
238
Must be one of the following:
@@ -241,14 +244,16 @@ Must be one of the following:
241
244
semi-colons, etc)
242
245
***refactor**: A code change that neither fixes a bug nor adds a feature
243
246
***perf**: A code change that improves performance
244
-
***test**: Adding missing tests
247
+
***test**: Adding missing or correcting existing tests
245
248
***chore**: Changes to the build process or auxiliary tools and libraries such as documentation
246
249
generation
247
250
248
251
### Scope
249
252
The scope could be anything specifying place of the commit change. For example `$location`,
grunt.registerTask('test','Run unit, docs and e2e tests with Karma',['eslint','package','test:unit','test:promises-aplus','tests:docs','test:protractor']);
326
363
grunt.registerTask('test:jqlite','Run the unit tests with Karma',['tests:jqlite']);
0 commit comments