@eik/cli 3.1.23 → 3.1.29

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 (2) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/package.json +31 -24
package/CHANGELOG.md CHANGED
@@ -1,3 +1,46 @@
1
+ ## [3.1.29](https://github.com/eik-lib/cli/compare/v3.1.28...v3.1.29) (2025-12-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updating depedencies ([#670](https://github.com/eik-lib/cli/issues/670)) ([30bb802](https://github.com/eik-lib/cli/commit/30bb802adb18b39164756657be820d53c1f5620a))
7
+ * updating depedencies ([#670](https://github.com/eik-lib/cli/issues/670)) ([7302910](https://github.com/eik-lib/cli/commit/7302910ea370b35af700cac704ff2a210d6efcfe))
8
+
9
+ ## [3.1.28](https://github.com/eik-lib/cli/compare/v3.1.27...v3.1.28) (2025-12-01)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **deps:** update dependency ora to v9 ([#653](https://github.com/eik-lib/cli/issues/653)) ([6531fe0](https://github.com/eik-lib/cli/commit/6531fe0406b50a6e6c86806ada39705e055c499f))
15
+
16
+ ## [3.1.27](https://github.com/eik-lib/cli/compare/v3.1.26...v3.1.27) (2025-11-24)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **deps:** update dependency form-data to v4.0.5 ([#664](https://github.com/eik-lib/cli/issues/664)) ([8644baf](https://github.com/eik-lib/cli/commit/8644baf2e5d55627ee0d0b7807d954c3bea51d29))
22
+
23
+ ## [3.1.26](https://github.com/eik-lib/cli/compare/v3.1.25...v3.1.26) (2025-11-20)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * **deps:** update dependency rimraf to v6.1.2 ([#662](https://github.com/eik-lib/cli/issues/662)) ([5fa2168](https://github.com/eik-lib/cli/commit/5fa2168f38a22f5d0ddc4a72aedb368fc671bbcf))
29
+
30
+ ## [3.1.25](https://github.com/eik-lib/cli/compare/v3.1.24...v3.1.25) (2025-11-19)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **deps:** update dependency tar to v7.5.2 ([#654](https://github.com/eik-lib/cli/issues/654)) ([0d15e69](https://github.com/eik-lib/cli/commit/0d15e69f427ed84cfd3ed7ef11cb4960eb07324d))
36
+
37
+ ## [3.1.24](https://github.com/eik-lib/cli/compare/v3.1.23...v3.1.24) (2025-11-19)
38
+
39
+
40
+ ### Bug Fixes
41
+
42
+ * **deps:** update dependency semver to v7.7.3 ([#657](https://github.com/eik-lib/cli/issues/657)) ([b0c4eab](https://github.com/eik-lib/cli/commit/b0c4eab9ede2aaca95359f059a2ff95505236956))
43
+
1
44
  ## [3.1.23](https://github.com/eik-lib/cli/compare/v3.1.22...v3.1.23) (2025-09-22)
2
45
 
3
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/cli",
3
- "version": "3.1.23",
3
+ "version": "3.1.29",
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 60 --disable-coverage",
25
- "test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --disable-coverage test/integration/**/*.test.mjs",
26
- "test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --disable-coverage test/*.test.mjs",
27
- "test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --timeout 60 --disable-coverage test/tasks/*.test.mjs",
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",
28
28
  "lint": "eslint .",
29
29
  "lint:fix": "eslint --fix .",
30
30
  "format:check": "prettier -c .",
@@ -34,6 +34,10 @@
34
34
  "types:module": "tsc",
35
35
  "types:test": "tsc --project tsconfig.test.json"
36
36
  },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git@github.com:eik-lib/cli.git"
40
+ },
37
41
  "keywords": [],
38
42
  "author": "",
39
43
  "license": "MIT",
@@ -42,33 +46,36 @@
42
46
  "abslog": "2.4.4",
43
47
  "bytes": "3.1.2",
44
48
  "date-fns": "4.1.0",
45
- "form-data": "4.0.4",
49
+ "form-data": "4.0.5",
46
50
  "gzip-size": "7.0.0",
47
- "ora": "8.2.0",
48
- "rimraf": "6.0.1",
49
- "semver": "7.7.2",
50
- "tar": "7.4.4",
51
+ "ora": "9.0.0",
52
+ "rimraf": "6.1.2",
53
+ "semver": "7.7.3",
54
+ "tar": "7.5.2",
51
55
  "tinyrainbow": "3.0.3",
52
- "yargs": "17.7.2",
56
+ "yargs": "18.0.0",
53
57
  "yargs-parser": "22.0.0"
54
58
  },
59
+ "overrides": {
60
+ "glob": "13.0.0"
61
+ },
55
62
  "devDependencies": {
56
- "@eik/eslint-config": "1.0.20",
63
+ "@eik/eslint-config": "1.0.23",
57
64
  "@eik/prettier-config": "1.0.1",
58
- "@eik/semantic-release-config": "1.0.5",
59
- "@eik/service": "2.3.2",
60
- "@eik/sink-memory": "1.1.3",
65
+ "@eik/semantic-release-config": "1.0.10",
66
+ "@eik/service": "5.1.6",
67
+ "@eik/sink-memory": "2.0.12",
61
68
  "@eik/typescript-config": "1.0.0",
62
- "@types/yargs": "17.0.33",
63
- "cross-env": "7.0.3",
64
- "eslint": "9.32.0",
65
- "fastify": "4.29.1",
66
- "fs-extra": "11.2.0",
69
+ "@types/yargs": "17.0.35",
70
+ "cross-env": "10.1.0",
71
+ "eslint": "9.39.1",
72
+ "fastify": "5.6.2",
73
+ "fs-extra": "11.3.2",
67
74
  "npm-run-all2": "5.0.2",
68
- "prettier": "3.4.2",
69
- "semantic-release": "24.0.0",
75
+ "prettier": "3.7.4",
76
+ "semantic-release": "25.0.2",
70
77
  "semantic-release-slack-bot": "4.0.2",
71
- "tap": "21.0.1",
72
- "typescript": "5.5.4"
78
+ "tap": "21.5.0",
79
+ "typescript": "5.9.3"
73
80
  }
74
81
  }