create-node-lib 2.14.0 → 2.15.1

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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [2.15.1](https://github.com/lirantal/create-node-lib/compare/v2.15.0...v2.15.1) (2026-04-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * chmod executables in template devcontainer ([0115d86](https://github.com/lirantal/create-node-lib/commit/0115d86e4a838e45f2916a6eb7363e25e1488182))
7
+
8
+ # [2.15.0](https://github.com/lirantal/create-node-lib/compare/v2.14.0...v2.15.0) (2026-04-10)
9
+
10
+
11
+ ### Features
12
+
13
+ * dependabot cooldowns for github actions ([19ebd56](https://github.com/lirantal/create-node-lib/commit/19ebd56773f68ad43e8eddb4a11161a2d75bb495))
14
+
1
15
  # [2.14.0](https://github.com/lirantal/create-node-lib/compare/v2.13.4...v2.14.0) (2026-03-26)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.14.0",
3
+ "version": "2.15.1",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
File without changes
File without changes
@@ -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
+