Thank you for your interest in contributing! We welcome improvements and suggestions to make this project even better. Please follow the guidelines below for a smooth experience.
- Code of Conduct
- Development Setup
- Upgrading Dependencies
- Coding Standards
- Commit Guidelines
- Testing
- Building
- Local Development with Yalc
- Publishing
Please adhere to our Code of Conduct in all interactions. Respectful and inclusive behavior is expected from all contributors.
To get started with contributing, set up the project by following these steps:
- Begin by cloning the repository and navigating to its directory.
- Use the correct Node.js version specified in .nvmrc:
- Install
nvm
if you haven't already. Follow the instructions on the nvm GitHub repository. - Run
nvm use
to switch to the required Node.js version.
- Install
- Install all project dependencies to ensure a complete setup with
npm install
. - Start Storybook using
npm run storybook
to develop and test UI components in isolation. - Run tests with
npm test
to verify that the environment is working correctly. You can also usenpm run test:watch
to run the tests in watch mode, andnpm run test:coverage
to generate a coverage report.
Keeping dependencies up-to-date is crucial for maintaining the security and performance of the project. Follow these steps to upgrade dependencies:
- Check for outdated dependencies with
npm outdated
. - Update dependencies using
npm update
or update a specific package withnpm install <package-name>@latest
. - Ensure everything works after the upgrade by running the tests with
npm test
. - Make sure the
package-lock.json
file is updated with the latest dependency versions by runningnpm install
. - Commit the changes to the repository with a clear commit message.
- Push the changes to your branch and create a pull request for review.
To maintain code quality and consistency, please follow these guidelines:
- Run
npm run format
to format code using Prettier. - Run
npm run type-check
to ensure there are no TypeScript type errors. - Organize imports into clearly separated groups, following this order: React imports, third-party packages, app-level aliases, and local imports.
- Arrange imports alphabetically by package name within each group to improve readability.
Use clear, descriptive commit messages following the Conventional Commits format. Add emojis to quickly convey the type of change if desired, following Git Commit Emoji conventions.
Please write tests for any new features or modifications to the project. Follow these steps to ensure your tests are effective and consistent:
- Use
npm run test
to run the tests. - Use
npm run test:watch
to run the tests in watch mode, which will re-run tests when files change. - Check coverage using
npm run test:coverage
to ensure all tests pass.
For consistency and modularity, organize test code into structured sections:
- Start by mocking dependencies or libraries.
- Create helper functions to streamline repetitive logic.
- Define constants for mock data or configurations.
- Structure the main test suite using
describe
blocks and focused test cases.
Ensure tests are clear, reusable, and easy to maintain before submitting changes.
Use the following commands as needed to build and preview the project:
- Build the project with
npm run build
, which generates CommonJS, ES Modules, as well as TypeScript declaration files in thedist/
folder.- Build CommonJS (CJS) modules for the project with
npm run build:cjs
. - Build ES Modules (ESM) for the project with
npm run build:esm
. - Generate TypeScript declaration files with
npm run build:types
. - Clean the
dist/
folder to ensure a clean build withnpm run clean
.
- Build CommonJS (CJS) modules for the project with
- Generate a static Storybook build with
npm run build:storybook
.
Use Yalc to test this package locally in other projects without publishing it to the npm registry.
- Install Yalc globally using
npm install yalc -g
. - In the target project's directory, add this package with
yalc add @your-scope/react-package-template
. - Publish changes to the local Yalc store by running
npm run yalc:publish
in this package's directory. - Push updates to the target project with
npm run yalc:push
, which notifies the target project of the latest changes. - Alternatively, manually update the package in the target project with
yalc update @your-scope/react-package-template
.
Follow these steps to ensure your changes work as expected before submitting them.
To enable automated publishing of new releases to npm, you need to create and configure an npm token.
- Log in to your npm account.
- Navigate to Access Tokens in your npm account settings.
- Generate a new token with the Automation option (recommended if you have 2FA enabled).
- Add the token to this repository's GitHub secrets:
- Go to Settings > Secrets and variables > Actions.
- Add a new secret named
NPM_TOKEN
and paste your npm token.
Once this is done, GitHub Actions will automatically publish the package to npm whenever a new release is created.