@eik/cli 3.0.2 → 3.1.1
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 +14 -0
- package/classes/publish/package/index.js +1 -1
- package/formatters/alias.js +4 -0
- package/formatters/artifact.js +4 -0
- package/package.json +2 -2
- package/types/classes/alias.d.ts +1 -1
- package/types/classes/publish/package/index.d.ts +2 -2
- package/types/utils/index.d.ts +2 -2
- package/utils/index.js +1 -2
- package/types/utils/type-slug.d.ts +0 -2
- package/utils/type-slug.js +0 -4
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## [3.1.1](https://github.com/eik-lib/cli/compare/v3.1.0...v3.1.1) (2024-08-19)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** update dependency boxen to v8.0.1 ([19fb7cf](https://github.com/eik-lib/cli/commit/19fb7cf1b72fadcf47ea2049761ee0e9c6a28050))
|
7
|
+
|
8
|
+
# [3.1.0](https://github.com/eik-lib/cli/compare/v3.0.2...v3.1.0) (2024-08-15)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* add support for image namespace publishing and aliasing ([a1a7e4c](https://github.com/eik-lib/cli/commit/a1a7e4c676cc45d30c63f4e522771298947dc47d))
|
14
|
+
|
1
15
|
## [3.0.2](https://github.com/eik-lib/cli/compare/v3.0.1...v3.0.2) (2024-08-14)
|
2
16
|
|
3
17
|
|
@@ -19,7 +19,7 @@ import Cleanup from './tasks/cleanup.js';
|
|
19
19
|
* @property {string} token
|
20
20
|
* @property {boolean} [dryRun=false]
|
21
21
|
* @property {string} server
|
22
|
-
* @property {"package" | "map" | "npm"} [type="package"]
|
22
|
+
* @property {"package" | "map" | "npm" | "image"} [type="package"]
|
23
23
|
* @property {string} name
|
24
24
|
* @property {string} [version="1.0.0"]
|
25
25
|
* @property {string[]} [map]
|
package/formatters/alias.js
CHANGED
package/formatters/artifact.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@eik/cli",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.1.1",
|
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",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"dependencies": {
|
45
45
|
"@eik/common": "4.1.0",
|
46
46
|
"abslog": "2.4.4",
|
47
|
-
"boxen": "8.0.
|
47
|
+
"boxen": "8.0.1",
|
48
48
|
"bytes": "3.1.2",
|
49
49
|
"chalk": "5.3.0",
|
50
50
|
"date-fns": "3.6.0",
|
package/types/classes/alias.d.ts
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
* @property {string} token
|
6
6
|
* @property {boolean} [dryRun=false]
|
7
7
|
* @property {string} server
|
8
|
-
* @property {"package" | "map" | "npm"} [type="package"]
|
8
|
+
* @property {"package" | "map" | "npm" | "image"} [type="package"]
|
9
9
|
* @property {string} name
|
10
10
|
* @property {string} [version="1.0.0"]
|
11
11
|
* @property {string[]} [map]
|
@@ -57,7 +57,7 @@ export type PublishOptions = {
|
|
57
57
|
token: string;
|
58
58
|
dryRun?: boolean;
|
59
59
|
server: string;
|
60
|
-
type?: "package" | "map" | "npm";
|
60
|
+
type?: "package" | "map" | "npm" | "image";
|
61
61
|
name: string;
|
62
62
|
version?: string;
|
63
63
|
map?: string[];
|
package/types/utils/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import logger from './logger.js';
|
2
2
|
export const getDefaults: typeof helpers.getDefaults;
|
3
|
-
|
3
|
+
export const typeSlug: typeof helpers.typeSlug;
|
4
4
|
import typeTitle from './type-title.js';
|
5
5
|
import { helpers } from '@eik/common';
|
6
|
-
export { logger,
|
6
|
+
export { logger, typeTitle };
|
package/utils/index.js
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
import { helpers } from '@eik/common';
|
2
2
|
import logger from './logger.js';
|
3
|
-
import typeSlug from './type-slug.js';
|
4
3
|
import typeTitle from './type-title.js';
|
5
4
|
|
6
|
-
const { getDefaults } = helpers;
|
5
|
+
const { getDefaults, typeSlug } = helpers;
|
7
6
|
|
8
7
|
export { logger, getDefaults, typeSlug, typeTitle };
|
package/utils/type-slug.js
DELETED