1 | # Contribution
|
2 |
|
3 | # Git Flow
|
4 |
|
5 | The crypto-js project uses [git flow](https://github.com/nvie/gitflow) to manage branches.
|
6 | Do your changes on the `develop` or even better on a `feature/*` branch. Don't do any changes on the `master` branch.
|
7 |
|
8 | # Pull request
|
9 |
|
10 | Target your pull request on `develop` branch. Other pull request won't be accepted.
|
11 |
|
12 | # How to build
|
13 |
|
14 | 1. Clone
|
15 |
|
16 | 2. Run
|
17 |
|
18 | ```sh
|
19 | npm install
|
20 | ```
|
21 |
|
22 | 3. Run
|
23 |
|
24 | ```sh
|
25 | npm run build
|
26 | ```
|
27 |
|
28 | 4. Check `build` folder |
\ | No newline at end of file |