Skip to content

Commit b80cb6e

Browse files
authored
Merge pull request #3 from netlify/docs/add-releasing-docs
Add release docs
2 parents c91d58f + d3a5987 commit b80cb6e

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

CONTRIBUTING.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,22 @@
44

55
These guidelines will help you send a pull request.
66

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.
99

1010
If you're submitting an issue instead, please skip this document.
1111

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.
1514

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.
1816

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.
2219

2320
# Development process
2421

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
2723
[these videos](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github).
2824

2925
Run:
@@ -38,5 +34,16 @@ Make sure everything is correctly setup with:
3834
npm test
3935
```
4036

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

Comments
 (0)