@eik/cli 3.1.29 → 3.1.31

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,18 @@
1
+ ## [3.1.31](https://github.com/eik-lib/cli/compare/v3.1.30...v3.1.31) (2025-12-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * version command for types other than package ([2970582](https://github.com/eik-lib/cli/commit/29705829ebc19483f213ad9673d4e943b84748ce))
7
+
8
+ ## [3.1.30](https://github.com/eik-lib/cli/compare/v3.1.29...v3.1.30) (2025-12-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 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))
14
+ * update eik/common ([da1f489](https://github.com/eik-lib/cli/commit/da1f4890ec320de022801edefa9d21ad8d0672c7))
15
+
1
16
  ## [3.1.29](https://github.com/eik-lib/cli/compare/v3.1.28...v3.1.29) (2025-12-11)
2
17
 
3
18
 
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(
@@ -43,6 +43,7 @@ export const handler = commandHandler(
43
43
  server,
44
44
  map,
45
45
  out,
46
+ type,
46
47
  files,
47
48
  configFile,
48
49
  } = argv;
@@ -55,6 +56,7 @@ export const handler = commandHandler(
55
56
  cwd,
56
57
  level,
57
58
  map,
59
+ type,
58
60
  out,
59
61
  files,
60
62
  configFile,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/cli",
3
- "version": "3.1.29",
3
+ "version": "3.1.31",
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",
@@ -42,7 +42,7 @@
42
42
  "author": "",
43
43
  "license": "MIT",
44
44
  "dependencies": {
45
- "@eik/common": "5.1.7",
45
+ "@eik/common": "5.1.11",
46
46
  "abslog": "2.4.4",
47
47
  "bytes": "3.1.2",
48
48
  "date-fns": "4.1.0",
@@ -57,21 +57,23 @@
57
57
  "yargs-parser": "22.0.0"
58
58
  },
59
59
  "overrides": {
60
- "glob": "13.0.0"
60
+ "semantic-release-slack-bot": {
61
+ "micromatch": "4.0.8"
62
+ }
61
63
  },
62
64
  "devDependencies": {
63
65
  "@eik/eslint-config": "1.0.23",
64
66
  "@eik/prettier-config": "1.0.1",
65
67
  "@eik/semantic-release-config": "1.0.10",
66
68
  "@eik/service": "5.1.6",
67
- "@eik/sink-memory": "2.0.12",
69
+ "@eik/sink-memory": "2.0.13",
68
70
  "@eik/typescript-config": "1.0.0",
69
71
  "@types/yargs": "17.0.35",
70
72
  "cross-env": "10.1.0",
71
73
  "eslint": "9.39.1",
72
74
  "fastify": "5.6.2",
73
75
  "fs-extra": "11.3.2",
74
- "npm-run-all2": "5.0.2",
76
+ "npm-run-all2": "8.0.4",
75
77
  "prettier": "3.7.4",
76
78
  "semantic-release": "25.0.2",
77
79
  "semantic-release-slack-bot": "4.0.2",