create-node-lib 2.19.4 → 2.19.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/CONTRIBUTING.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [2.19.5](https://github.com/lirantal/create-node-lib/compare/v2.19.4...v2.19.5) (2026-05-17)
|
|
2
|
+
|
|
1
3
|
## [2.19.4](https://github.com/lirantal/create-node-lib/compare/v2.19.3...v2.19.4) (2026-05-17)
|
|
2
4
|
|
|
3
5
|
## [2.19.3](https://github.com/lirantal/create-node-lib/compare/v2.19.2...v2.19.3) (2026-05-15)
|
package/CONTRIBUTING.md
CHANGED
|
@@ -16,7 +16,7 @@ A quick search of existing issues helps avoid duplicates, but don't agonize over
|
|
|
16
16
|
|
|
17
17
|
PRs are expected to meet a few baseline requirements before review:
|
|
18
18
|
|
|
19
|
-
- **Tests are required** for any behavior change
|
|
19
|
+
- **Tests are required** for any behavior change, new features need new tests, bug fixes need a regression test that fails without the fix.
|
|
20
20
|
- **Existing tests must pass** locally and in CI. Don't disable or skip tests to make a PR green.
|
|
21
21
|
- **Coverage should not regress.** If your change drops coverage meaningfully, add tests or explain why in the PR description.
|
|
22
22
|
- **Linters and type checks must pass.** Run them locally before pushing; CI will reject otherwise.
|
|
@@ -31,7 +31,7 @@ Large or speculative changes: open an issue first to align on direction before i
|
|
|
31
31
|
|
|
32
32
|
This project follows [Conventional Commits](https://www.conventionalcommits.org/). The format is:
|
|
33
33
|
|
|
34
|
-
```
|
|
34
|
+
```text
|
|
35
35
|
<type>(<optional scope>): <short summary>
|
|
36
36
|
```
|
|
37
37
|
|
|
@@ -47,7 +47,7 @@ Common types:
|
|
|
47
47
|
|
|
48
48
|
Examples:
|
|
49
49
|
|
|
50
|
-
```
|
|
50
|
+
```text
|
|
51
51
|
feat: support multiple input files
|
|
52
52
|
fix(parser): handle empty input gracefully
|
|
53
53
|
docs: clarify install instructions
|