Found a problem? Want a new feature?
- See if your issue or idea has already been reported.
- Provide a reduced test case or a live example.
Remember, a bug is a demonstrable problem caused by our code.
Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.
- To begin, fork this project, clone your fork, and add our upstream.
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/vuex-map-fields # Navigate to the newly cloned directory cd vuex-map-fields # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/maoberlehner/vuex-map-fields # Install the tools necessary for development yarn install
- Create a branch for your feature or hotfix:
# Move into a new branch for a feature git checkout -b feature/thing
# Move into a new branch for a hotfix git checkout -b hotfix/something
- Push your branch up to your fork:
# Push a feature branch git push origin feature/thing
# Push a hotfix branch git push origin hotfix/something
- Now open a pull request with a clear title and description.