@eik/cli 3.1.14 → 3.1.16
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/package.json +7 -7
- package/types/classes/version.d.ts +2 -3
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## [3.1.16](https://github.com/eik-lib/cli/compare/v3.1.15...v3.1.16) (2025-05-19)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** update dependency semver to v7.7.2 ([#634](https://github.com/eik-lib/cli/issues/634)) ([a64573e](https://github.com/eik-lib/cli/commit/a64573e09b39250d3c2cb4a6b9ef3d7efc9325e0))
|
7
|
+
|
8
|
+
## [3.1.15](https://github.com/eik-lib/cli/compare/v3.1.14...v3.1.15) (2025-02-17)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **deps:** update dependency form-data to v4.0.2 ([#626](https://github.com/eik-lib/cli/issues/626)) ([57a6963](https://github.com/eik-lib/cli/commit/57a6963907ec4c78f7da808f230118d6076d42aa))
|
14
|
+
|
1
15
|
## [3.1.14](https://github.com/eik-lib/cli/compare/v3.1.13...v3.1.14) (2025-02-04)
|
2
16
|
|
3
17
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@eik/cli",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.16",
|
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",
|
@@ -43,28 +43,28 @@
|
|
43
43
|
"bytes": "3.1.2",
|
44
44
|
"chalk": "5.4.1",
|
45
45
|
"date-fns": "3.6.0",
|
46
|
-
"form-data": "4.0.
|
46
|
+
"form-data": "4.0.2",
|
47
47
|
"gzip-size": "7.0.0",
|
48
48
|
"make-dir": "5.0.0",
|
49
49
|
"ora": "8.2.0",
|
50
50
|
"rimraf": "6.0.1",
|
51
|
-
"semver": "7.7.
|
51
|
+
"semver": "7.7.2",
|
52
52
|
"ssri": "10.0.6",
|
53
53
|
"tar": "7.4.3",
|
54
54
|
"yargs": "17.7.2",
|
55
55
|
"yargs-parser": "21.1.1"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
58
|
-
"@eik/eslint-config": "1.0.
|
58
|
+
"@eik/eslint-config": "1.0.13",
|
59
59
|
"@eik/prettier-config": "1.0.1",
|
60
|
-
"@eik/semantic-release-config": "1.0.
|
60
|
+
"@eik/semantic-release-config": "1.0.2",
|
61
61
|
"@eik/service": "2.3.2",
|
62
62
|
"@eik/sink-memory": "1.1.3",
|
63
63
|
"@eik/typescript-config": "1.0.0",
|
64
64
|
"@types/yargs": "17.0.33",
|
65
65
|
"cross-env": "7.0.3",
|
66
|
-
"eslint": "9.
|
67
|
-
"fastify": "4.29.
|
66
|
+
"eslint": "9.21.0",
|
67
|
+
"fastify": "4.29.1",
|
68
68
|
"fs-extra": "11.2.0",
|
69
69
|
"npm-run-all2": "5.0.2",
|
70
70
|
"prettier": "3.4.2",
|
@@ -21,7 +21,7 @@ export default class Version {
|
|
21
21
|
config: EikConfig;
|
22
22
|
configFile: string;
|
23
23
|
path: string;
|
24
|
-
level:
|
24
|
+
level: any;
|
25
25
|
/**
|
26
26
|
* Similar to `npm version`, but updates `eik.json`
|
27
27
|
* @returns {Promise<string | null>} The new version number, or null if the versioning failed
|
@@ -34,7 +34,7 @@ export type VersionOptions = {
|
|
34
34
|
type?: "package" | "npm" | "map";
|
35
35
|
name: string;
|
36
36
|
version: string;
|
37
|
-
level?:
|
37
|
+
level?: any;
|
38
38
|
cwd: string;
|
39
39
|
map?: string[];
|
40
40
|
out?: string;
|
@@ -43,4 +43,3 @@ export type VersionOptions = {
|
|
43
43
|
};
|
44
44
|
import abslog from "abslog";
|
45
45
|
import { EikConfig } from "@eik/common";
|
46
|
-
import semver from "semver";
|