1
0
mirror of https://github.com/jiahaog/Nativefier synced 2024-06-24 07:36:34 +02:00
Nativefier/.github/CONTRIBUTING.md

31 lines
808 B
Markdown
Raw Normal View History

2016-01-25 02:53:09 +01: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 05:49:52 +01:00
See [here](https://github.com/nativefier/nativefier#development) for instructions on how to set up a development environment.
2016-01-25 02:53:09 +01: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 02:53:09 +01:00
The following commands might be helpful:
2016-01-25 02:53:09 +01:00
```bash
# Run specs only
npm run test
2016-01-25 02:53:09 +01:00
# Run linter only
npm run lint
2016-01-25 02:53:09 +01:00
```
Thank you so much for your contribution!