Merge pull request #1872 from ooade/add/contributing.md

Add Contributing.md file
This commit is contained in:
Sébastien Chopin 2017-10-18 11:15:51 +02:00 committed by GitHub
commit f79f500968
2 changed files with 12 additions and 1 deletions

8
.contributing.md Normal file
View File

@ -0,0 +1,8 @@
# Contributing to Nuxt.js
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device.
2. Install the dependencies: `npm install`.
3. Run `npm link` to link the local repo to NPM.
4. Run `npm run build` to build and watch for code changes.
5. Then npm link this repo inside any example app with `npm link nuxt`.
6. Then you can run your example app with the local version of Nuxt.js (You may need to re-run the example app as you change server side code in the Nuxt.js repository).

View File

@ -252,3 +252,6 @@ Note: we recommend putting `.nuxt` in `.npmignore` or `.gitignore`.
## Roadmap ## Roadmap
https://github.com/nuxt/nuxt.js/projects/1 https://github.com/nuxt/nuxt.js/projects/1
## Contributing
Please see our [contributing.md](./contributing.md)