@capraconsulting/cals-cli 3.11.4 → 3.12.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/lib/cache.d.ts +1 -1
- package/lib/cals-cli.mjs +84 -105
- package/lib/cals-cli.mjs.map +1 -1
- package/lib/cli/commands/definition/dump-setup.d.ts +1 -1
- package/lib/cli/commands/definition/validate.d.ts +1 -1
- package/lib/cli/commands/definition.d.ts +1 -1
- package/lib/cli/commands/delete-cache.d.ts +1 -1
- package/lib/cli/commands/getting-started.d.ts +1 -1
- package/lib/cli/commands/github/analyze-directory.d.ts +1 -1
- package/lib/cli/commands/github/configure.d.ts +1 -1
- package/lib/cli/commands/github/generate-clone-commands.d.ts +1 -1
- package/lib/cli/commands/github/list-pull-requests-stats.d.ts +1 -1
- package/lib/cli/commands/github/list-repos.d.ts +1 -1
- package/lib/cli/commands/github/list-webhooks.d.ts +1 -1
- package/lib/cli/commands/github/set-token.d.ts +1 -1
- package/lib/cli/commands/github/sync.d.ts +2 -2
- package/lib/cli/commands/github/util.d.ts +2 -2
- package/lib/cli/commands/github.d.ts +1 -1
- package/lib/cli/commands/snyk/report.d.ts +1 -1
- package/lib/cli/commands/snyk/set-token.d.ts +1 -1
- package/lib/cli/commands/snyk/sync.d.ts +1 -1
- package/lib/cli/commands/snyk.d.ts +1 -1
- package/lib/cli/util.d.ts +1 -1
- package/lib/config.d.ts +1 -1
- package/lib/definition/definition.d.ts +1 -1
- package/lib/definition/types.d.ts +1 -1
- package/lib/github/changeset/changeset.d.ts +4 -4
- package/lib/github/changeset/execute.d.ts +3 -3
- package/lib/github/changeset/types.d.ts +1 -1
- package/lib/github/index.d.ts +1 -1
- package/lib/github/service.d.ts +4 -4
- package/lib/github/types.d.ts +1 -1
- package/lib/github/util.d.ts +1 -1
- package/lib/index.es.js +32 -51
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +32 -51
- package/lib/index.js.map +1 -1
- package/lib/snyk/service.d.ts +4 -4
- package/lib/snyk/util.d.ts +1 -1
- package/lib/sonarcloud/index.d.ts +1 -1
- package/lib/sonarcloud/service.d.ts +2 -2
- package/lib/testing/lib.d.ts +1 -1
- package/package.json +16 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capraconsulting/cals-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.1",
|
|
4
4
|
"description": "CLI for repeatable tasks in CALS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"build": "rollup -c",
|
|
10
10
|
"test": "vitest run --coverage src",
|
|
11
11
|
"test:watch": "vitest --coverage src",
|
|
12
|
-
"lint": "
|
|
13
|
-
"lint:fix": "
|
|
12
|
+
"lint": "biome check",
|
|
13
|
+
"lint:fix": "biome check --fix",
|
|
14
|
+
"format": "biome format --write",
|
|
14
15
|
"prepack": "./scripts/build-and-verify.sh",
|
|
15
|
-
"prettier": "prettier --config .prettierrc --write .",
|
|
16
16
|
"semantic-release": "semantic-release",
|
|
17
17
|
"watch": "rollup -c -w"
|
|
18
18
|
},
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/dateformat": "5.0.3",
|
|
28
28
|
"ajv": "^8.11.0",
|
|
29
29
|
"cachedir": "^2.4.0",
|
|
30
|
-
"chalk": "5.
|
|
30
|
+
"chalk": "5.5.0",
|
|
31
31
|
"execa": "^9.0.0",
|
|
32
32
|
"find-up": "^7.0.0",
|
|
33
33
|
"js-yaml": "^4.1.0",
|
|
@@ -43,43 +43,36 @@
|
|
|
43
43
|
},
|
|
44
44
|
"overrides": {
|
|
45
45
|
"semantic-release": {
|
|
46
|
-
"@semantic-release/npm": "12.0.
|
|
46
|
+
"@semantic-release/npm": "12.0.2"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
+
"@biomejs/biome": "2.1.3",
|
|
50
51
|
"@commitlint/cli": "19.8.1",
|
|
51
52
|
"@commitlint/config-conventional": "19.8.1",
|
|
52
|
-
"@eslint/eslintrc": "^3.2.0",
|
|
53
|
-
"@eslint/js": "^9.16.0",
|
|
54
53
|
"@octokit/types": "14.1.0",
|
|
55
54
|
"@rollup/plugin-alias": "5.1.1",
|
|
56
55
|
"@rollup/plugin-json": "6.1.0",
|
|
57
56
|
"@rollup/plugin-replace": "6.0.2",
|
|
58
57
|
"@types/js-yaml": "4.0.9",
|
|
59
58
|
"@types/lodash-es": "4.17.12",
|
|
60
|
-
"@types/node": "
|
|
61
|
-
"@types/node-fetch": "2.6.
|
|
62
|
-
"@types/read": "0.0
|
|
59
|
+
"@types/node": "24.1.0",
|
|
60
|
+
"@types/node-fetch": "2.6.13",
|
|
61
|
+
"@types/read": "3.0.0",
|
|
63
62
|
"@types/semver": "7.7.0",
|
|
64
63
|
"@types/sprintf-js": "1.1.4",
|
|
65
64
|
"@types/yargs": "17.0.33",
|
|
66
|
-
"@
|
|
67
|
-
"@
|
|
68
|
-
"@vitest/coverage-v8": "3.2.3",
|
|
69
|
-
"@vitest/ui": "3.2.3",
|
|
65
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
66
|
+
"@vitest/ui": "3.2.4",
|
|
70
67
|
"dateformat": "5.0.3",
|
|
71
|
-
"eslint": "9.29.0",
|
|
72
|
-
"eslint-config-prettier": "10.1.5",
|
|
73
|
-
"eslint-plugin-prettier": "5.4.1",
|
|
74
68
|
"husky": "9.1.7",
|
|
75
|
-
"
|
|
76
|
-
"rollup": "4.43.0",
|
|
69
|
+
"rollup": "4.46.2",
|
|
77
70
|
"rollup-plugin-typescript2": "0.36.0",
|
|
78
|
-
"semantic-release": "24.2.
|
|
71
|
+
"semantic-release": "24.2.7",
|
|
79
72
|
"tsx": "4.20.3",
|
|
80
|
-
"typescript": "5.
|
|
73
|
+
"typescript": "5.9.2",
|
|
81
74
|
"typescript-json-schema": "0.65.1",
|
|
82
|
-
"vitest": "3.2.
|
|
75
|
+
"vitest": "3.2.4"
|
|
83
76
|
},
|
|
84
77
|
"files": [
|
|
85
78
|
"lib"
|