@eik/cli 3.1.23 → 3.1.30

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 CHANGED
@@ -1,3 +1,54 @@
1
+ ## [3.1.30](https://github.com/eik-lib/cli/compare/v3.1.29...v3.1.30) (2025-12-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * log the version URL causing the 404, not the alias URL ([#668](https://github.com/eik-lib/cli/issues/668)) [skip ci] ([b491c6e](https://github.com/eik-lib/cli/commit/b491c6efa11f055074255a6ffb50ca6b9babd098))
7
+ * update eik/common ([da1f489](https://github.com/eik-lib/cli/commit/da1f4890ec320de022801edefa9d21ad8d0672c7))
8
+
9
+ ## [3.1.29](https://github.com/eik-lib/cli/compare/v3.1.28...v3.1.29) (2025-12-11)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * updating depedencies ([#670](https://github.com/eik-lib/cli/issues/670)) ([30bb802](https://github.com/eik-lib/cli/commit/30bb802adb18b39164756657be820d53c1f5620a))
15
+ * updating depedencies ([#670](https://github.com/eik-lib/cli/issues/670)) ([7302910](https://github.com/eik-lib/cli/commit/7302910ea370b35af700cac704ff2a210d6efcfe))
16
+
17
+ ## [3.1.28](https://github.com/eik-lib/cli/compare/v3.1.27...v3.1.28) (2025-12-01)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **deps:** update dependency ora to v9 ([#653](https://github.com/eik-lib/cli/issues/653)) ([6531fe0](https://github.com/eik-lib/cli/commit/6531fe0406b50a6e6c86806ada39705e055c499f))
23
+
24
+ ## [3.1.27](https://github.com/eik-lib/cli/compare/v3.1.26...v3.1.27) (2025-11-24)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * **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))
30
+
31
+ ## [3.1.26](https://github.com/eik-lib/cli/compare/v3.1.25...v3.1.26) (2025-11-20)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * **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))
37
+
38
+ ## [3.1.25](https://github.com/eik-lib/cli/compare/v3.1.24...v3.1.25) (2025-11-19)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * **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))
44
+
45
+ ## [3.1.24](https://github.com/eik-lib/cli/compare/v3.1.23...v3.1.24) (2025-11-19)
46
+
47
+
48
+ ### Bug Fixes
49
+
50
+ * **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))
51
+
1
52
  ## [3.1.23](https://github.com/eik-lib/cli/compare/v3.1.22...v3.1.23) (2025-09-22)
2
53
 
3
54
 
package/classes/alias.js CHANGED
@@ -128,7 +128,7 @@ export default class Alias {
128
128
  throw new Error("Client unauthorized with server");
129
129
  case 404:
130
130
  throw new Error(
131
- `The server was unable to locate ${pathname}. Ensure you have the correct package type (eik package-alias vs eik npm-alias), name and that the version exists on the server.`,
131
+ `The server was unable to locate ${joinUrlPathname(this.type, this.name, this.version)}. Ensure you have the correct package type (eik package-alias vs eik npm-alias), name and that the package version you're trying to alias exists on the server.`,
132
132
  );
133
133
  case 409:
134
134
  throw new Error(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/cli",
3
- "version": "3.1.23",
3
+ "version": "3.1.30",
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,41 +34,50 @@
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",
40
44
  "dependencies": {
41
- "@eik/common": "5.1.7",
45
+ "@eik/common": "5.1.11",
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
+ "semantic-release-slack-bot": {
61
+ "micromatch": "4.0.8"
62
+ }
63
+ },
55
64
  "devDependencies": {
56
- "@eik/eslint-config": "1.0.20",
65
+ "@eik/eslint-config": "1.0.23",
57
66
  "@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",
67
+ "@eik/semantic-release-config": "1.0.10",
68
+ "@eik/service": "5.1.6",
69
+ "@eik/sink-memory": "2.0.13",
61
70
  "@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",
67
- "npm-run-all2": "5.0.2",
68
- "prettier": "3.4.2",
69
- "semantic-release": "24.0.0",
71
+ "@types/yargs": "17.0.35",
72
+ "cross-env": "10.1.0",
73
+ "eslint": "9.39.1",
74
+ "fastify": "5.6.2",
75
+ "fs-extra": "11.3.2",
76
+ "npm-run-all2": "8.0.4",
77
+ "prettier": "3.7.4",
78
+ "semantic-release": "25.0.2",
70
79
  "semantic-release-slack-bot": "4.0.2",
71
- "tap": "21.0.1",
72
- "typescript": "5.5.4"
80
+ "tap": "21.5.0",
81
+ "typescript": "5.9.3"
73
82
  }
74
83
  }