create-node-lib 2.13.4 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ # [2.14.0](https://github.com/lirantal/create-node-lib/compare/v2.13.4...v2.14.0) (2026-03-26)
9
+
10
+
11
+ ### Features
12
+
13
+ * add apm manifest ([583ed58](https://github.com/lirantal/create-node-lib/commit/583ed58987e0c4644477fed879d8b55f543be69b))
14
+
1
15
  ## [2.13.4](https://github.com/lirantal/create-node-lib/compare/v2.13.3...v2.13.4) (2026-03-26)
2
16
 
3
17
 
@@ -34,6 +34,7 @@ describe('all the template files are accountable for', () => {
34
34
  expect(stream.fileList).toContain('README.md')
35
35
  expect(stream.fileList).toContain('__tests__/app.test.ts')
36
36
  expect(stream.fileList).toContain('package.json')
37
+ expect(stream.fileList).toContain('apm.yml')
37
38
  })
38
39
 
39
40
  test('Generator input creates a valid package.json file', async () => {
@@ -63,6 +64,11 @@ describe('all the template files are accountable for', () => {
63
64
  )
64
65
 
65
66
  const pkg = JSON.parse(await stream.readFile('package.json'))
67
+ const apmYaml = await stream.readFile('apm.yml')
68
+ expect(apmYaml).toContain(`name: "${mockProjectName}"`)
69
+ expect(apmYaml).toContain(`description: "${mockProjectDescription}"`)
70
+ expect(apmYaml).toContain(`author: "${mockProjectAuthor}"`)
71
+
66
72
  expect(pkg.name).toBe(mockProjectName)
67
73
  expect(pkg.description).toBe(mockProjectDescription)
68
74
  expect(pkg.author.name).toBe(mockProjectAuthor)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.13.4",
3
+ "version": "2.15.0",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -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
+
@@ -0,0 +1,9 @@
1
+ name: "<%= projectName %>"
2
+ version: 1.0.0
3
+ description: "<%= description %>"
4
+ author: "<%= author %>"
5
+ dependencies:
6
+ apm:
7
+ - lirantal/nodejs-cli-apps-best-practices/skills/nodejs-cli-best-practices
8
+ mcp: []
9
+ scripts: {}