-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(github): add new labels for breaking changes, features, and fix…
…es to improve issue tracking chore(pull_request_template): create a template to standardize pull request submissions and ensure necessary information is provided chore(npmignore): add .npmignore file to exclude unnecessary files and directories from npm package distribution
- Loading branch information
1 parent
eccca20
commit 2abc13e
Showing
3 changed files
with
43 additions
and
1 deletion.
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
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,20 @@ | ||
## Description | ||
<!-- What does this PR do? --> | ||
|
||
## Type of change | ||
<!-- Please delete options that are not relevant --> | ||
- [ ] Breaking change (major version) | ||
- [ ] New feature (minor version) | ||
- [ ] Bug fix (patch version) | ||
- [ ] Documentation update | ||
- [ ] Dependencies update | ||
|
||
## Checklist | ||
- [ ] I have added tests | ||
- [ ] I have updated documentation | ||
- [ ] I have assigned appropriate labels | ||
- [ ] I have added the change to CHANGELOG.md | ||
- [ ] All tests pass locally | ||
|
||
## Related Issues | ||
<!-- Link related issues here --> |
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,10 @@ | ||
# .npmignore | ||
src/__tests__/ | ||
.github/ | ||
.vscode/ | ||
coverage/ | ||
*.test.ts | ||
*.spec.ts | ||
tsconfig.json | ||
.eslintrc | ||
.prettierrc |