@eik/cli 3.1.31 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/index.js +2 -2
  3. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+
1
10
  ## [3.1.31](https://github.com/eik-lib/cli/compare/v3.1.30...v3.1.31) (2025-12-15)
2
11
 
3
12
 
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
- .parse();
88
+ .parseAsync();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/cli",
3
- "version": "3.1.31",
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 90 --jobs=1 --disable-coverage",
25
- "test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 90 --jobs=1 --disable-coverage test/integration/**/*.test.mjs",
26
- "test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 90 --jobs=1 --disable-coverage test/*.test.mjs",
27
- "test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 90 --jobs=1 --disable-coverage test/tasks/*.test.mjs",
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.11",
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.0.0",
51
+ "ora": "9.1.0",
52
52
  "rimraf": "6.1.2",
53
53
  "semver": "7.7.3",
54
- "tar": "7.5.2",
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.23",
65
+ "@eik/eslint-config": "1.0.25",
66
66
  "@eik/prettier-config": "1.0.1",
67
- "@eik/semantic-release-config": "1.0.10",
68
- "@eik/service": "5.1.6",
69
- "@eik/sink-memory": "2.0.13",
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.1",
74
- "fastify": "5.6.2",
75
- "fs-extra": "11.3.2",
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.7.4",
78
- "semantic-release": "25.0.2",
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"