create-node-lib 2.14.0 → 2.15.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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/template/.github/dependabot.yml +12 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.15.0](https://github.com/lirantal/create-node-lib/compare/v2.14.0...v2.15.0) (2026-04-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* dependabot cooldowns for github actions ([19ebd56](https://github.com/lirantal/create-node-lib/commit/19ebd56773f68ad43e8eddb4a11161a2d75bb495))
|
|
7
|
+
|
|
1
8
|
# [2.14.0](https://github.com/lirantal/create-node-lib/compare/v2.13.4...v2.14.0) (2026-03-26)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -8,6 +8,11 @@ updates:
|
|
|
8
8
|
# Prefix all commit messages with "chore: "
|
|
9
9
|
prefix: "chore"
|
|
10
10
|
open-pull-requests-limit: 10
|
|
11
|
+
cooldown:
|
|
12
|
+
default-days: 7
|
|
13
|
+
semver-major-days: 7
|
|
14
|
+
semver-minor-days: 7
|
|
15
|
+
semver-patch-days: 7
|
|
11
16
|
|
|
12
17
|
- package-ecosystem: "npm"
|
|
13
18
|
directory: "/"
|
|
@@ -17,6 +22,11 @@ updates:
|
|
|
17
22
|
schedule:
|
|
18
23
|
interval: "weekly"
|
|
19
24
|
open-pull-requests-limit: 10
|
|
25
|
+
cooldown:
|
|
26
|
+
default-days: 7
|
|
27
|
+
semver-major-days: 7
|
|
28
|
+
semver-minor-days: 7
|
|
29
|
+
semver-patch-days: 7
|
|
20
30
|
# Use the 'dependencies' default label and add
|
|
21
31
|
# the 'automerge' one for automerge github action support
|
|
22
32
|
labels:
|
|
@@ -40,4 +50,5 @@ updates:
|
|
|
40
50
|
# example for ignoring dependencies:
|
|
41
51
|
# ignore:
|
|
42
52
|
# - dependency-name: tap
|
|
43
|
-
# update-types: ["version-update:semver-major"]
|
|
53
|
+
# update-types: ["version-update:semver-major"]
|
|
54
|
+
|