-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from diecodev/perf-resumability
Perf resumability
- Loading branch information
Showing
11 changed files
with
268 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ node_modules | |
# Cache | ||
.cache | ||
.mf | ||
.vscode | ||
.rollup.cache | ||
tsconfig.tsbuildinfo | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"seatonjiang.gitmoji-vscode", | ||
"vivaxy.vscode-conventional-commits", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"conventionalCommits.emojiFormat": "emoji", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Contributing to Qwik-Sonner | ||
|
||
Thank you for considering contributing to Qwik-Sonner! This library provides toast notifications for seamless user feedback. | ||
|
||
To contribute, please follow these guidelines: | ||
|
||
## Getting Started | ||
|
||
1. Fork the Qwik-Sonner repository on GitHub. | ||
2. Clone the forked repository to your local machine. | ||
|
||
```bash | ||
git clone https://github.com/your-username/qwik-sonner.git | ||
``` | ||
|
||
3. Create a new branch to work on. The branch name should briefly describe the changes you're making. | ||
|
||
```bash | ||
git checkout -b feature/your-change | ||
``` | ||
|
||
## Making Changes | ||
|
||
- If you are making general changes, describe them in the branch name. | ||
- If you are working on the website, add "website" after the verb in the branch name. | ||
|
||
Example: | ||
- `feature/update-readme` | ||
- `feature-website/add-new-feature` | ||
|
||
### Commit Messages | ||
|
||
For commit messages, use [Conventional Commits](https://www.conventionalcommits.org/) format. If you're making changes to the website, include the "website" scope. | ||
|
||
### Visual Studio Code Setup | ||
|
||
For an optimal development experience, use the extensions provided in the `.vscode` folder. Additionally, execute the Conventional Commits extension to follow the commit message conventions. | ||
|
||
## Creating a Pull Request | ||
|
||
1. Push your changes to your forked repository. | ||
|
||
```bash | ||
git push origin feature/your-change | ||
``` | ||
|
||
2. Create a Pull Request (PR) on the original Qwik-Sonner repository. | ||
|
||
Make sure to include: | ||
|
||
- A descriptive title for your PR. | ||
- Details about the changes made. | ||
- Any relevant context or motivation. | ||
- Mention if a package version update is needed and explain the reasons. | ||
|
||
## Versioning | ||
|
||
If your changes require a package version update, clearly state it in the PR. Provide reasons and justifications for the version update. | ||
|
||
Thank you for your contribution! 🚀 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.