@xcelera/cli 2.0.0 → 2.1.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/README.md +11 -0
- package/dist/action.js +9403 -4144
- package/dist/action.js.map +1 -1
- package/dist/cli.js +9228 -189
- package/dist/cli.js.map +1 -1
- package/package.json +24 -32
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xcelera/cli",
|
|
3
3
|
"description": "CLI for xcelera.dev",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"author": "",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
@@ -34,50 +34,42 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"bundle": "npm run format:write && npm run package",
|
|
36
36
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
37
|
-
"
|
|
38
|
-
"format:
|
|
39
|
-
"lint": "npx eslint .",
|
|
37
|
+
"check": "npx @biomejs/biome check",
|
|
38
|
+
"format:write": "npx @biomejs/biome format --write",
|
|
40
39
|
"local-action": "npx @github/local-action . src/action.ts .env",
|
|
41
40
|
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
42
41
|
"package:watch": "npm run package -- --watch",
|
|
43
42
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest --passWithNoTests",
|
|
44
|
-
"all": "npm run format:write && npm run
|
|
43
|
+
"all": "npm run format:write && npm run check && npm run test && npm run coverage && npm run package"
|
|
45
44
|
},
|
|
46
45
|
"license": "MIT",
|
|
47
46
|
"dependencies": {
|
|
48
47
|
"@actions/core": "^1.11.1",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
48
|
+
"@types/env-ci": "^3.1.4",
|
|
49
|
+
"env-ci": "^11.2.0",
|
|
50
|
+
"is-network-error": "^1.3.0",
|
|
51
|
+
"parse-github-url": "^1.0.3",
|
|
52
|
+
"simple-git": "^3.30.0"
|
|
51
53
|
},
|
|
52
54
|
"devDependencies": {
|
|
53
|
-
"@
|
|
54
|
-
"@commitlint/
|
|
55
|
-
"@
|
|
56
|
-
"@github/local-action": "^
|
|
57
|
-
"@jest/globals": "^30.
|
|
58
|
-
"@rollup/plugin-commonjs": "^
|
|
59
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
60
|
-
"@rollup/plugin-typescript": "^12.
|
|
55
|
+
"@biomejs/biome": "2.3.8",
|
|
56
|
+
"@commitlint/cli": "^20.2.0",
|
|
57
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
58
|
+
"@github/local-action": "^6.0.2",
|
|
59
|
+
"@jest/globals": "^30.2.0",
|
|
60
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
61
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
62
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
61
63
|
"@types/jest": "^30.0.0",
|
|
62
|
-
"@types/node": "^
|
|
63
|
-
"
|
|
64
|
-
"@typescript-eslint/parser": "^8.42.0",
|
|
65
|
-
"eslint": "^9.35.0",
|
|
66
|
-
"eslint-config-prettier": "^10.1.8",
|
|
67
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
68
|
-
"eslint-plugin-import": "^2.32.0",
|
|
69
|
-
"eslint-plugin-jest": "^29.0.1",
|
|
70
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
71
|
-
"jest": "^30.1.3",
|
|
64
|
+
"@types/node": "^24.10.1",
|
|
65
|
+
"jest": "^30.2.0",
|
|
72
66
|
"make-coverage-badge": "^1.2.0",
|
|
73
|
-
"msw": "^2.
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"semantic-release": "^24.2.7",
|
|
78
|
-
"ts-jest": "^29.4.1",
|
|
67
|
+
"msw": "^2.12.4",
|
|
68
|
+
"rollup": "^4.53.3",
|
|
69
|
+
"semantic-release": "^25.0.2",
|
|
70
|
+
"ts-jest": "^29.4.6",
|
|
79
71
|
"ts-jest-resolver": "^2.0.1",
|
|
80
|
-
"typescript": "^5.9.
|
|
72
|
+
"typescript": "^5.9.3"
|
|
81
73
|
},
|
|
82
74
|
"optionalDependencies": {
|
|
83
75
|
"@rollup/rollup-linux-x64-gnu": "*"
|