@capraconsulting/cals-cli 3.12.2 → 3.12.3

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/lib/cals-cli.mjs CHANGED
@@ -26,7 +26,7 @@ import { read } from 'read';
26
26
  import { findUp } from 'find-up';
27
27
  import { execa } from 'execa';
28
28
 
29
- var version = "3.12.2";
29
+ var version = "3.12.3";
30
30
  var engines = {
31
31
  node: ">=12.0.0"
32
32
  };
@@ -2583,7 +2583,7 @@ function parseShortlogSummary(value) {
2583
2583
  const matches = [...value.matchAll(/^\s*(\d+)\s+(.+)$/gm)];
2584
2584
  return matches.map((it) => ({
2585
2585
  name: it[2],
2586
- count: Number.parseInt(it[1]),
2586
+ count: Number.parseInt(it[1], 10),
2587
2587
  }));
2588
2588
  }
2589
2589
 
@@ -3309,7 +3309,7 @@ async function main() {
3309
3309
  process$2.exit(1);
3310
3310
  }
3311
3311
  await yargs(hideBin(process$2.argv))
3312
- .usage(`cals-cli v${version} (build: ${"2025-08-20T21:09:03+0000"})`)
3312
+ .usage(`cals-cli v${version} (build: ${"2025-09-01T16:06:15+0000"})`)
3313
3313
  .scriptName("cals")
3314
3314
  .locale("en")
3315
3315
  .help("help")
package/lib/index.es.js CHANGED
@@ -21,7 +21,7 @@ import { Transform } from 'node:stream';
21
21
  import { execa } from 'execa';
22
22
  import { read } from 'read';
23
23
 
24
- var version = "3.12.2";
24
+ var version = "3.12.3";
25
25
 
26
26
  class CacheProvider {
27
27
  constructor(config) {
package/lib/index.js CHANGED
@@ -21,7 +21,7 @@ import { Transform } from 'node:stream';
21
21
  import { execa } from 'execa';
22
22
  import { read } from 'read';
23
23
 
24
- var version = "3.12.2";
24
+ var version = "3.12.3";
25
25
 
26
26
  class CacheProvider {
27
27
  constructor(config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capraconsulting/cals-cli",
3
- "version": "3.12.2",
3
+ "version": "3.12.3",
4
4
  "description": "CLI for repeatable tasks in CALS",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  "js-yaml": "^4.1.0",
34
34
  "keytar": "^7.9.0",
35
35
  "node-fetch": "^3.0.0",
36
- "p-limit": "^6.0.0",
36
+ "p-limit": "^7.0.0",
37
37
  "p-map": "^7.0.0",
38
38
  "process": "0.11.10",
39
39
  "read": "^4.0.0",
@@ -47,7 +47,7 @@
47
47
  }
48
48
  },
49
49
  "devDependencies": {
50
- "@biomejs/biome": "2.2.0",
50
+ "@biomejs/biome": "2.2.2",
51
51
  "@commitlint/cli": "19.8.1",
52
52
  "@commitlint/config-conventional": "19.8.1",
53
53
  "@octokit/types": "14.1.0",
@@ -66,10 +66,10 @@
66
66
  "@vitest/ui": "3.2.4",
67
67
  "dateformat": "5.0.3",
68
68
  "husky": "9.1.7",
69
- "rollup": "4.46.2",
69
+ "rollup": "4.49.0",
70
70
  "rollup-plugin-typescript2": "0.36.0",
71
71
  "semantic-release": "24.2.7",
72
- "tsx": "4.20.4",
72
+ "tsx": "4.20.5",
73
73
  "typescript": "5.9.2",
74
74
  "typescript-json-schema": "0.65.1",
75
75
  "vitest": "3.2.4"