2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00

Updating CONTRIBUTIN

This commit is contained in:
Matt Zabriskie
2016-04-07 14:21:31 -06:00
parent f269a702fe
commit df29a221c2
+9 -2
View File
@@ -8,7 +8,7 @@ Please follow the [node style guide](https://github.com/felixge/node-style-guide
### Commit Messages
Commit messages should be verb based.
Commit messages should be verb based, using the following pattern:
- `Fixing ...`
- `Adding ...`
@@ -27,12 +27,19 @@ Please update the docs accordingly so that there are no discrepencies between th
- `grunt test` run the jasmine and nodeunit tests
- `grunt build` run webpack and bundle the source
- `grunt publish` prepare the code for release
- `grunt version` prepare the code for release
- `grunt watch:test` watch for changes and run `test`
- `grunt watch:build` watch for changes and run `build`
Please don't include changes to `dist/` in your pull request. This should only be updated when releasing a new version.
### Releasing
Releasing a new version is mostly automated. For now the [CHANGELOG](https://github.com/mzabriskie/axios/blob/master/CHANGELOG.md) requires being updated manually. Once this has been done run the following commands:
- `npm version <newversion> -m "Releasing %s"`
- `npm publish`
### Running Examples
Examples are included in part to allow manual testing.