kvalita 1.21.0 → 1.22.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 CHANGED
@@ -50,7 +50,7 @@ Use the `--extends` flag in your CI workflow:
50
50
  ```
51
51
 
52
52
  This configuration includes:
53
- - Branches: `main`, `rc` (prerelease), `beta` (prerelease), `alpha` (prerelease)
53
+ - Branches: `main`, `rc` (prerelease), `beta` (prerelease), `alpha` (prerelease), and maintenance branches named `N.x` or `N.N.x`, which publish to the `release-N.x` dist-tag
54
54
  - `conventionalcommits` preset with `feat!:` syntax for breaking changes
55
55
  - [npm provenance](https://docs.npmjs.com/generating-provenance-statements) (requires `id-token: write` permission)
56
56
 
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/semantic-release.json",
3
3
  "branches": [
4
+ "+([0-9])?(.{+([0-9]),x}).x",
4
5
  "main",
5
6
  { "name": "rc", "channel": "rc", "prerelease": "rc" },
6
7
  { "name": "beta", "channel": "beta", "prerelease": "beta" },
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/semantic-release.json",
3
3
  "branches": [
4
+ "+([0-9])?(.{+([0-9]),x}).x",
4
5
  "main",
5
6
  { "name": "rc", "channel": "rc", "prerelease": "rc" },
6
7
  { "name": "beta", "channel": "beta", "prerelease": "beta" },
package/package.json CHANGED
@@ -24,22 +24,22 @@
24
24
  "prepare": "lefthook install"
25
25
  },
26
26
  "peerDependencies": {
27
- "@biomejs/biome": "^2.5.0",
27
+ "@biomejs/biome": "^2.5.14",
28
28
  "@commitlint/cli": "^20.0.0 || ^21.0.0",
29
29
  "@commitlint/config-conventional": "^20.0.0 || ^21.0.0",
30
30
  "conventional-changelog-conventionalcommits": "^9.0.0",
31
- "lefthook": "^2.0.0",
31
+ "lefthook": "^2.1.14",
32
32
  "semantic-release": "^24.0.0 || ^25.0.0",
33
33
  "typescript": "^6.0.0 || ^7.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@biomejs/biome": "^2.5.10",
36
+ "@biomejs/biome": "^2.5.14",
37
37
  "@commitlint/cli": "^21.2.2",
38
38
  "@commitlint/config-conventional": "^21.2.2",
39
39
  "conventional-changelog-conventionalcommits": "^9.3.1",
40
- "lefthook": "^2.1.10",
40
+ "lefthook": "^2.1.14",
41
41
  "semantic-release": "^25.0.9",
42
42
  "typescript": "^7.0.2"
43
43
  },
44
- "version": "1.21.0"
44
+ "version": "1.22.0"
45
45
  }