26 lines
963 B
Markdown
26 lines
963 B
Markdown
# Contributing
|
|
|
|
Thanks for your interesting in helping make *grunt-wp-i18n* better! Read on for a few basic tips and guidelines for contributing.
|
|
|
|
## Pull Requests
|
|
|
|
Feel free to submit a pull request at any time, but please explain the reason for the change (use cases may be helpful). Opening an issue beforehand may also be beneficial to hash out the direction and determine if it's worthwhile.
|
|
|
|
Submit pull requests against the `develop` branch.
|
|
|
|
## Code Style
|
|
|
|
Since this project is WordPress-centric, we try to follow the guidelines for WordPress' [JavaScript Coding Standards](https://make.wordpress.org/core/handbook/coding-standards/javascript/).
|
|
|
|
## Testing the Develop Branch
|
|
|
|
Update the version in `packages.json` to point to the `develop` branch:
|
|
|
|
```js
|
|
"devDependencies": {
|
|
"grunt": "~0.4.5",
|
|
"grunt-wp-i18n": "git://github.com/cedaro/grunt-wp-i18n.git#develop"
|
|
}
|
|
```
|
|
|
|
Run `npm install` to install the development branch. |