Contributing
Great! We appreciate your willingness to contribute!
The following are some guidelines for contributing to the Vue cheatsheet. These guidelines are meant to provide direction, but they are not strict rules. Please use your own judgment, and feel free to suggest changes to this document.
Running the project locally
We recommend pnpm package manager. You can download it from here. If you don't want to use
pnpm
, you can usenpm
oryarn
instead.Clone the project, and install the dependencies:
shell
git clone https://github.com/themeselection/vue-cheatsheet.git
cd vue-cheatsheet
pnpm install
- Create a new branch:
shell
git branch new_content
git checkout new_content
- Change/upgrade/add the changes you want
- Update the
README
if needed Add
,commit
andpush
your changes to GitHub:
shell
git add .
git commit -m 'Your commit message'
git push origin new_content
- Open a pull request
You can
- Submit changes to the cheatsheet
- Improve existing topics and examples
- Add new topics or resources
- Ask for new topics by creating an Issue
- Read the issues, fork the project and do a Pull Request
- Report any kind of error or typo by creating an Issue or fix it with a Pull Request
What you need to know
If you don't know where to start:
- Mastering Markdown
- Mastering Issues
- Forking Projects
- And read the rest of the GitHub Guides