4
4
5
5
These guidelines will help you send a pull request.
6
6
7
- Please note that this project is not intended to be used outside my own projects
8
- so new features are unlikely to be accepted.
7
+ Please note that this project is not intended to be used outside my own projects so new features are unlikely to be
8
+ accepted.
9
9
10
10
If you're submitting an issue instead, please skip this document.
11
11
12
- If your pull request is related to a typo or the documentation being unclear,
13
- please click on the relevant page's ` Edit ` button (pencil icon) and directly
14
- suggest a correction instead.
12
+ If your pull request is related to a typo or the documentation being unclear, please click on the relevant page's ` Edit `
13
+ button (pencil icon) and directly suggest a correction instead.
15
14
16
- This project was made with ❤️. The simplest way to give back is by starring and
17
- sharing it online.
15
+ This project was made with ❤️. The simplest way to give back is by starring and sharing it online.
18
16
19
- Everyone is welcome regardless of personal background. We enforce a
20
- [ Code of conduct] ( CODE_OF_CONDUCT.md ) in order to promote a positive and
21
- inclusive environment.
17
+ Everyone is welcome regardless of personal background. We enforce a [ Code of conduct] ( CODE_OF_CONDUCT.md ) in order to
18
+ promote a positive and inclusive environment.
22
19
23
20
# Development process
24
21
25
- First fork and clone the repository. If you're not sure how to do this, please
26
- watch
22
+ First fork and clone the repository. If you're not sure how to do this, please watch
27
23
[ these videos] ( https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github ) .
28
24
29
25
Run:
@@ -38,5 +34,16 @@ Make sure everything is correctly setup with:
38
34
npm test
39
35
```
40
36
41
- After submitting the pull request, please make sure the Continuous Integration
42
- checks are passing.
37
+ After submitting the pull request, please make sure the Continuous Integration checks are passing.
38
+
39
+ ## Releasing
40
+
41
+ ``` bash
42
+ npm version [major| minor| patch]
43
+ ```
44
+
45
+ Then:
46
+
47
+ ```
48
+ npm publish [--tag=TAG]
49
+ ```
0 commit comments