Thanks for showing interest in contributing to Scroll Infinitely! 🎉
When it comes to open source, there are different ways you can contribute, all of which are valuable. Here's a few guidelines that should help you as you prepare your contribution.
The following steps will get you up and running to contribute to Scroll Infinitely:
-
Fork the repo (click the Fork button at the top right of this page).
-
Clone your fork locally
git clone https://github.com/<your_github_username>/scroll-infinitely.git
cd scroll-infinitely
- Setup all the dependencies and packages by running
pnpm install
. This command will install dependencies.
- PNPM to manage packages and dependencies
- Changeset for changes documentation, changelog generation, and release management.
- Husky for pre-commit hooks.
pnpm build
: build the package.
pnpm dev
: run the development server.
pnpm lint
: check for linting errors.
pnpm typecheck
: check for TypeScript type errors.
pnpm format
: format the code with Prettier.
pnpm format:check
: check if the code is formatted correctly.
We use Husky to run linting and type checking before you commit. This ensures a consistent code style and prevents errors.
-
pre-commit
: runspnpm lint-staged
to check for linting errors. -
commit-msg
: runscommitlint
to check if your commit message follows the commit convention.
Please conform to the issue template and provide a clear path to reproduction with a code example. The best way to show a bug is by sending a CodeSandbox link.
The issue template is coming soon...
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests.
Before you create a Pull Request, please check whether your commits comply with the commit conventions used in this repository.
When you create a commit we kindly ask you to follow the convention
category: message
in your commit message while using one of the following
categories:
feat / feature
: all changes that introduce completely new code or new featuresfix
: changes that fix a bug (ideally you will additionally reference an issue if present)refactor
: any code related change that is not a fix nor a featuredocs
: changing existing or creating new documentation (i.e. README, docs for usage of a lib or cli usage)test
: all changes regarding tests (adding new tests or changing existing ones)chore
: all changes to the repository that do not fit into any of the above categories
If you are interested in the detailed specification you can visit https://www.conventionalcommits.org/
-
Fork of the scroll-infinitely repository and clone your fork. (Check the setup section for more information).
-
Create a new branch out of the
master
branch. We follow the convention[type/scope]
. For examplefix/action-loader
ordocs/readme
.type
can be eitherdocs
,fix
,feat
, or any other conventional commit type.scope
is just a short id that describes the scope of work. -
Make and commit your changes following the commit convention. As you develop, you can run
pnpm build
andpnpm lint
to make sure everything works as expected. Husky will run these commands before you commit. -
Check if you rebase your branch on the latest
master
branch. You can do this by runninggit pull origin master
and thengit rebase master
on your branch. -
Run
pnpm changeset
to create a detailed description of your changes. This will be used to generate a changelog when we publish an update. Learn more about Changeset. Check if your branch is up to date with themaster
branch before running this command.
All commits that fix bugs or add features need a test.
Tests are coming soon...
By contributing your code to the scroll-infinitely GitHub repository, you agree to license your contribution under the MIT license.