kvalita 1.4.0 → 1.6.0
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/README.md +2 -0
- package/configs/biome.json +1 -1
- package/configs/semantic-release.json +2 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -52,6 +52,8 @@ Create a `release.json` file in your project root:
|
|
|
52
52
|
|
|
53
53
|
This configuration uses the `conventionalcommits` preset, which supports the `feat!:` syntax for breaking changes.
|
|
54
54
|
|
|
55
|
+
It also enables [npm provenance](https://docs.npmjs.com/generating-provenance-statements). Your CI workflow needs `id-token: write` permission for publishing to work.
|
|
56
|
+
|
|
55
57
|
### [Lefthook](https://github.com/evilmartians/lefthook) Configuration
|
|
56
58
|
|
|
57
59
|
Create a `lefthook.json` file in your project root and extend the hooks you need:
|
package/configs/biome.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/semantic-release.json",
|
|
2
3
|
"plugins": [
|
|
3
4
|
[
|
|
4
5
|
"@semantic-release/commit-analyzer",
|
|
@@ -8,7 +9,7 @@
|
|
|
8
9
|
}
|
|
9
10
|
],
|
|
10
11
|
["@semantic-release/release-notes-generator", { "preset": "conventionalcommits" }],
|
|
11
|
-
"@semantic-release/npm",
|
|
12
|
+
["@semantic-release/npm", { "provenance": true }],
|
|
12
13
|
"@semantic-release/github"
|
|
13
14
|
]
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@biomejs/biome": "^2.3.8",
|
|
36
|
-
"@commitlint/cli": "^20.
|
|
37
|
-
"@commitlint/config-conventional": "^20.
|
|
36
|
+
"@commitlint/cli": "^20.2.0",
|
|
37
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
38
38
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
39
|
-
"lefthook": "^
|
|
39
|
+
"lefthook": "^2.0.8",
|
|
40
40
|
"semantic-release": "^25.0.2",
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
|
-
"version": "1.
|
|
43
|
+
"version": "1.6.0"
|
|
44
44
|
}
|