2016-01-25 01:53:09 +00:00
|
|
|
# Contributing to Nativefier
|
|
|
|
|
|
|
|
## Issues
|
|
|
|
|
|
|
|
Please include the following in your new issue:
|
|
|
|
|
|
|
|
- Version of Nativefier (run `$ nativefier --version`)
|
|
|
|
- Version of Node.js (run `$ node --version`)
|
|
|
|
- Command line parameters
|
|
|
|
- OS and architecture you are running Nativefier from
|
|
|
|
- Stack trace from the error message (if any)
|
|
|
|
- Instructions to reproduce the issue
|
|
|
|
|
|
|
|
## Pull Requests
|
|
|
|
|
2021-01-30 04:49:52 +00:00
|
|
|
See [here](https://github.com/nativefier/nativefier#development) for instructions on how to set up a development environment.
|
2016-01-25 01:53:09 +00:00
|
|
|
|
2017-04-29 14:52:12 +00:00
|
|
|
We follow the [Airbnb Style Guide](https://github.com/airbnb/javascript), please make sure tests and lints pass when you submit your pull request.
|
2016-01-25 01:53:09 +00:00
|
|
|
|
2017-04-29 14:52:12 +00:00
|
|
|
The following commands might be helpful:
|
2016-01-25 01:53:09 +00:00
|
|
|
|
|
|
|
```bash
|
2017-04-29 14:52:12 +00:00
|
|
|
# Run specs only
|
|
|
|
npm run test
|
2016-01-25 01:53:09 +00:00
|
|
|
|
2017-04-29 14:52:12 +00:00
|
|
|
# Run linter only
|
|
|
|
npm run lint
|
2016-01-25 01:53:09 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Thank you so much for your contribution!
|