@eik/cli 3.1.30 → 3.1.32
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 +16 -0
- package/commands/version.js +2 -0
- package/index.js +2 -2
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [3.1.32](https://github.com/eik-lib/cli/compare/v3.1.31...v3.1.32) (2026-02-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump timeout to deal with macOS process spawning ([fa5a5a4](https://github.com/eik-lib/cli/commit/fa5a5a4cf8dc2a854530388c49d8fc207a06caae))
|
|
7
|
+
* try to improve tests ([e9388fe](https://github.com/eik-lib/cli/commit/e9388fe8ec2e703c4b03f16a20c02b6597e34db3))
|
|
8
|
+
* Update dependencies ([e04adcc](https://github.com/eik-lib/cli/commit/e04adcc31a6f1782f16b22d639f45ef17c865287))
|
|
9
|
+
|
|
10
|
+
## [3.1.31](https://github.com/eik-lib/cli/compare/v3.1.30...v3.1.31) (2025-12-15)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* version command for types other than package ([2970582](https://github.com/eik-lib/cli/commit/29705829ebc19483f213ad9673d4e943b84748ce))
|
|
16
|
+
|
|
1
17
|
## [3.1.30](https://github.com/eik-lib/cli/compare/v3.1.29...v3.1.30) (2025-12-12)
|
|
2
18
|
|
|
3
19
|
|
package/commands/version.js
CHANGED
package/index.js
CHANGED
|
@@ -40,7 +40,7 @@ if (
|
|
|
40
40
|
process.exit(0);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
yargs(hideBin(process.argv))
|
|
43
|
+
await yargs(hideBin(process.argv))
|
|
44
44
|
.scriptName("eik")
|
|
45
45
|
// inspired by git
|
|
46
46
|
.usage(
|
|
@@ -85,4 +85,4 @@ For a more detailed description of commands and options, see the reference docum
|
|
|
85
85
|
.version(false) // Turn off the built-in version option to not conflict with the version command
|
|
86
86
|
.help()
|
|
87
87
|
.alias("h", "help")
|
|
88
|
-
.
|
|
88
|
+
.parseAsync();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eik/cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.32",
|
|
4
4
|
"description": "CLI tool for publishing assets to an Eik server",
|
|
5
5
|
"main": "./classes/index.js",
|
|
6
6
|
"types": "./types/classes/index.d.ts",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
23
|
"clean": "rimraf .tap node_modules types",
|
|
24
|
-
"test": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout
|
|
25
|
-
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout
|
|
26
|
-
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout
|
|
27
|
-
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout
|
|
24
|
+
"test": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage",
|
|
25
|
+
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/integration/**/*.test.mjs",
|
|
26
|
+
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/*.test.mjs",
|
|
27
|
+
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 180 --jobs=1 --disable-coverage test/tasks/*.test.mjs",
|
|
28
28
|
"lint": "eslint .",
|
|
29
29
|
"lint:fix": "eslint --fix .",
|
|
30
30
|
"format:check": "prettier -c .",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"author": "",
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@eik/common": "5.1.
|
|
45
|
+
"@eik/common": "5.1.13",
|
|
46
46
|
"abslog": "2.4.4",
|
|
47
47
|
"bytes": "3.1.2",
|
|
48
48
|
"date-fns": "4.1.0",
|
|
49
49
|
"form-data": "4.0.5",
|
|
50
50
|
"gzip-size": "7.0.0",
|
|
51
|
-
"ora": "9.
|
|
51
|
+
"ora": "9.1.0",
|
|
52
52
|
"rimraf": "6.1.2",
|
|
53
53
|
"semver": "7.7.3",
|
|
54
|
-
"tar": "7.5.
|
|
54
|
+
"tar": "7.5.7",
|
|
55
55
|
"tinyrainbow": "3.0.3",
|
|
56
56
|
"yargs": "18.0.0",
|
|
57
57
|
"yargs-parser": "22.0.0"
|
|
@@ -62,20 +62,20 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@eik/eslint-config": "1.0.
|
|
65
|
+
"@eik/eslint-config": "1.0.25",
|
|
66
66
|
"@eik/prettier-config": "1.0.1",
|
|
67
|
-
"@eik/semantic-release-config": "1.0.
|
|
68
|
-
"@eik/service": "5.1.
|
|
69
|
-
"@eik/sink-memory": "2.0.
|
|
67
|
+
"@eik/semantic-release-config": "1.0.12",
|
|
68
|
+
"@eik/service": "5.1.19",
|
|
69
|
+
"@eik/sink-memory": "2.0.15",
|
|
70
70
|
"@eik/typescript-config": "1.0.0",
|
|
71
71
|
"@types/yargs": "17.0.35",
|
|
72
72
|
"cross-env": "10.1.0",
|
|
73
|
-
"eslint": "9.39.
|
|
74
|
-
"fastify": "5.
|
|
75
|
-
"fs-extra": "11.3.
|
|
73
|
+
"eslint": "9.39.2",
|
|
74
|
+
"fastify": "5.7.2",
|
|
75
|
+
"fs-extra": "11.3.3",
|
|
76
76
|
"npm-run-all2": "8.0.4",
|
|
77
|
-
"prettier": "3.
|
|
78
|
-
"semantic-release": "25.0.
|
|
77
|
+
"prettier": "3.8.1",
|
|
78
|
+
"semantic-release": "25.0.3",
|
|
79
79
|
"semantic-release-slack-bot": "4.0.2",
|
|
80
80
|
"tap": "21.5.0",
|
|
81
81
|
"typescript": "5.9.3"
|