Thank you for investing your time in contributing to Cloud Data Import! Any contribution you make will be reviewed by our team and is greatly appreciated.
Read our Code of Conduct to keep our community approachable and respectable.
In this guide, you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.
- New Contributor Guide
- Getting Started
- Issues
- Making Changes
- Commit Messages
- Changesets
- Pull Request Process
- Questions or Need Help?
If you're new to contributing to open source projects, the following resources might be helpful:
- Finding ways to contribute to open source on GitHub
- Set up Git
- GitHub flow
- Collaborating with pull requests
- Fork the repository on GitHub.
- Clone your fork locally.
- Create a new branch for your contribution.
- Install dependencies with
npm install
. - Make your changes.
- Run tests with
npm test
. - Ensure your code follows our style guidelines by running
npm run lint
. - Push your changes to your fork on GitHub.
- Submit a pull request to the main repository.
If you spot a problem, search if an issue already exists. If a related issue doesn't exist, you can open a new issue.
Please ensure that new issues are:
- Descriptive
- Thoughtful
- Organized
We recommend adding as many relevant links, minimal reproductions of the issue, and other materials that will help our team solve the issue quickly.
If you're interested in solving an issue, scan through existing issues to find one that interests you. If you find an issue to work on, you are welcome to open a PR with a fix.
When making changes:
- Follow the Getting Started guide above.
- Create a working branch and start with your changes.
- Test your changes thoroughly.
We use Changesets for managing changes, versioning, and publishing. ONLY if your changes should be published to npm, follow these steps:
- After making your changes, run
npx changeset
. - Choose the type of version bump:
patch
: for backwards-compatible bug fixes, small improvements, and documentation changesminor
: for backwards-compatible new featuresmajor
: for breaking changes
- Write a summary of your changes when prompted.
- Commit the generated changeset file along with your changes.
- Ensure your code adheres to the existing style.
- Update the README.md with details of changes to the interface, if applicable.
- Add tests for your changes if possible.
- Create a pull request with a clear title and description.
- Link PR to issue if you are solving one.
- We may ask for changes to be made before a PR can be merged, either using suggested changes or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch.
- As you update your PR and apply changes, mark each conversation as resolved.
- If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.
If you have any questions or need help with setting up, feel free to open an issue or reach out to the maintainers.
Thank you for contributing to Cloud Data Import! Happy Visualizing 🎉
Best, Miro Team