@lerna-lite/core 3.3.3 → 3.4.0
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RemoteClientType } from './interfaces.js';
|
|
1
|
+
import { ChangelogPresetOptions, RemoteClientType } from './interfaces.js';
|
|
2
2
|
export interface ChangedCommandOption {
|
|
3
3
|
conventionalCommits?: boolean;
|
|
4
4
|
conventionalGraduate: boolean | string | string[];
|
|
@@ -65,7 +65,7 @@ export interface VersionCommandOption {
|
|
|
65
65
|
changelogHeaderMessage?: string;
|
|
66
66
|
changelogIncludeCommitsGitAuthor?: boolean | string;
|
|
67
67
|
changelogIncludeCommitsClientLogin?: boolean | string;
|
|
68
|
-
changelogPreset?: string;
|
|
68
|
+
changelogPreset?: string | ChangelogPresetOptions;
|
|
69
69
|
createRelease?: RemoteClientType;
|
|
70
70
|
createReleaseDiscussion?: string;
|
|
71
71
|
generateReleaseNotes?: boolean;
|
|
@@ -14,6 +14,21 @@ export interface CommandOptions {
|
|
|
14
14
|
rollPublish?: boolean;
|
|
15
15
|
rollVersion?: boolean;
|
|
16
16
|
}
|
|
17
|
+
export interface ChangelogPresetOptions {
|
|
18
|
+
name: string;
|
|
19
|
+
header?: string;
|
|
20
|
+
types?: Array<{
|
|
21
|
+
type: string;
|
|
22
|
+
section: string;
|
|
23
|
+
hidden?: boolean;
|
|
24
|
+
}>;
|
|
25
|
+
issuePrefixes?: string[];
|
|
26
|
+
issueUrlFormat?: string;
|
|
27
|
+
commitUrlFormat?: string;
|
|
28
|
+
compareUrlFormat?: string;
|
|
29
|
+
userUrlFormat?: string;
|
|
30
|
+
releaseCommitMessageFormat?: string;
|
|
31
|
+
}
|
|
17
32
|
export type CommandType = '' | 'changed' | 'exec' | 'info' | 'init' | 'list' | 'publish' | 'run' | 'version';
|
|
18
33
|
export interface DescribeRefOptions {
|
|
19
34
|
cwd?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lerna-lite/core",
|
|
3
3
|
"description": "Lerna-Lite core implementation module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.4.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"node": "^18.0.0 || >=20.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@npmcli/run-script": "^
|
|
32
|
+
"@npmcli/run-script": "^8.1.0",
|
|
33
33
|
"chalk": "^5.3.0",
|
|
34
34
|
"clone-deep": "^4.0.1",
|
|
35
35
|
"config-chain": "^1.1.13",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"fs-extra": "^11.2.0",
|
|
40
40
|
"glob-parent": "^6.0.2",
|
|
41
41
|
"globby": "^14.0.1",
|
|
42
|
-
"inquirer": "^9.2.
|
|
42
|
+
"inquirer": "^9.2.21",
|
|
43
43
|
"is-ci": "^3.0.1",
|
|
44
44
|
"json5": "^2.2.3",
|
|
45
45
|
"load-json-file": "^7.0.1",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"p-map": "^7.0.2",
|
|
50
50
|
"p-queue": "^8.0.1",
|
|
51
51
|
"resolve-from": "^5.0.0",
|
|
52
|
-
"semver": "^7.6.
|
|
52
|
+
"semver": "^7.6.2",
|
|
53
53
|
"slash": "^5.1.0",
|
|
54
54
|
"strong-log-transformer": "^2.1.0",
|
|
55
55
|
"write-file-atomic": "^5.0.1",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"type": "ko_fi",
|
|
61
61
|
"url": "https://ko-fi.com/ghiscoding"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "6b530baf88f57946e0cf18e438c35bdc6437d040"
|
|
64
64
|
}
|