Skip to content

Commit 804953c

Browse files
committed
2 parents c22bba8 + f7cde3e commit 804953c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This document outlines our development processes.
44

5+
## ES6
6+
7+
Source code for all .js files in this project is written in es6 and then compiled via babel to es5. Unfortunately, for legacy reasons, the es5 needs to be stored in version control. As such, if you want to change a js file, edit the version in the corresponding .es6 directory, compile it with the `gulp babel` command, and then commit it as well as the resulting .js file.
8+
59
## Pull Requests
610

711
All changes to this project should be made in the form of pull requests against master. Use snake-case prefixed by 'feat/' or 'fix/' for features/fixes. Feel free to use any of the commit types listed [here](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#type) as well. Note that when pull requests are merged in they will be automatically released to npm by (Travis CI)[https://travis-ci.org/] and (semantic-release)[https://github.com/semantic-release/semantic-release] so make sure to fully test.
@@ -25,4 +29,4 @@ This project depends on [ios-branch-deep-linking](https://github.com/BranchMetri
2529
```shell
2630
# <tag> is the name of the release. e,g, '0.12.5'
2731
$ src/ios/dependencies/update.sh <tag>
28-
```
32+
```

0 commit comments

Comments
 (0)