@lerna-lite/core 1.8.0 → 1.9.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.
package/dist/command.d.ts CHANGED
@@ -8,7 +8,7 @@ export declare class Command<T extends AvailableCommandOption> {
8
8
  concurrency: number;
9
9
  envDefaults: any;
10
10
  sort: any;
11
- toposort?: number;
11
+ toposort?: boolean;
12
12
  execOpts: ExecOpts;
13
13
  commandName: CommandType;
14
14
  composed: any;
@@ -0,0 +1,20 @@
1
+ import { ExecOpts, RemoteClientType, RemoteCommit } from '../models';
2
+ /**
3
+ * From the current branch, find all commits since the last tag release.
4
+ * The output will be an array which include every commit short hash & user login
5
+ * @param {RemoteClientType} client
6
+ * @param {String} gitRemote
7
+ * @param {String} branchName
8
+ * @param {ExecOpts} execOpts
9
+ * @returns {Promise<RemoteCommit[]>}
10
+ */
11
+ export declare function getCommitsSinceLastRelease(client: RemoteClientType, gitRemote: string, branchName: string, execOpts: ExecOpts): Promise<RemoteCommit[]>;
12
+ /**
13
+ * From the current branch, we will return the last tag date, sha and ref count
14
+ * or else return it from the first commit of the current branch
15
+ */
16
+ export declare function getLastTagDetails(execOpts: ExecOpts, includeMergedTags?: boolean): {
17
+ tagHash: string;
18
+ tagDate: string;
19
+ tagRefCount: string | number;
20
+ };
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getLastTagDetails = exports.getCommitsSinceLastRelease = void 0;
7
+ const npmlog_1 = __importDefault(require("npmlog"));
8
+ const child_process_1 = require("../child-process");
9
+ const get_github_commits_1 = require("./get-github-commits");
10
+ const describe_ref_1 = require("../utils/describe-ref");
11
+ const validation_error_1 = require("../validation-error");
12
+ /**
13
+ * From the current branch, find all commits since the last tag release.
14
+ * The output will be an array which include every commit short hash & user login
15
+ * @param {RemoteClientType} client
16
+ * @param {String} gitRemote
17
+ * @param {String} branchName
18
+ * @param {ExecOpts} execOpts
19
+ * @returns {Promise<RemoteCommit[]>}
20
+ */
21
+ async function getCommitsSinceLastRelease(client, gitRemote, branchName, execOpts) {
22
+ // get the last release tag date or the first commit date if no release tag found
23
+ const { tagDate } = getLastTagDetails(execOpts, false);
24
+ switch (client) {
25
+ case 'github':
26
+ return (0, get_github_commits_1.getGithubCommits)(gitRemote, branchName, tagDate, execOpts);
27
+ case 'gitlab':
28
+ default:
29
+ throw new validation_error_1.ValidationError('EREMOTE', 'Invalid remote client type, "github" is currently the only supported client with the option --changelog-include-commits-client-login.');
30
+ }
31
+ }
32
+ exports.getCommitsSinceLastRelease = getCommitsSinceLastRelease;
33
+ /**
34
+ * From the current branch, we will return the last tag date, sha and ref count
35
+ * or else return it from the first commit of the current branch
36
+ */
37
+ function getLastTagDetails(execOpts, includeMergedTags) {
38
+ let execResult = '';
39
+ const describeOptions = { ...execOpts };
40
+ const { refCount, lastTagName } = (0, describe_ref_1.describeRefSync)(describeOptions, includeMergedTags);
41
+ if (lastTagName) {
42
+ npmlog_1.default.silly('git', 'getCurrentBranchLastTagDateSha');
43
+ execResult = (0, child_process_1.execSync)('git', ['log', '-1', '--format="%h %cI"', lastTagName], execOpts);
44
+ }
45
+ else {
46
+ npmlog_1.default.silly('git', 'getCurrentBranchFirstCommitDateSha');
47
+ execResult = (0, child_process_1.execSync)('git', ['log', '--oneline', '--format="%h %cI"', '--reverse', '--max-parents=0', 'HEAD'], execOpts);
48
+ }
49
+ const [_, tagHash, tagDate] = /^"?([0-9a-f]+)\s([0-9\-T\:]*)"?$/.exec(execResult) || [];
50
+ return { tagHash, tagDate, tagRefCount: refCount };
51
+ }
52
+ exports.getLastTagDetails = getLastTagDetails;
53
+ //# sourceMappingURL=get-commits-since-last-release.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-commits-since-last-release.js","sourceRoot":"","sources":["../../src/conventional-commits/get-commits-since-last-release.ts"],"names":[],"mappings":";;;;;;AAAA,oDAAyB;AAEzB,oDAA4C;AAC5C,6DAAwD;AAExD,wDAAwD;AACxD,0DAAsD;AAEtD;;;;;;;;GAQG;AACI,KAAK,UAAU,0BAA0B,CAC9C,MAAwB,EACxB,SAAiB,EACjB,UAAkB,EAClB,QAAkB;IAElB,iFAAiF;IACjF,MAAM,EAAE,OAAO,EAAE,GAAG,iBAAiB,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;IAEvD,QAAQ,MAAM,EAAE;QACd,KAAK,QAAQ;YACX,OAAO,IAAA,qCAAgB,EAAC,SAAS,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;QACpE,KAAK,QAAQ,CAAC;QACd;YACE,MAAM,IAAI,kCAAe,CACvB,SAAS,EACT,uIAAuI,CACxI,CAAC;KACL;AACH,CAAC;AAnBD,gEAmBC;AAED;;;GAGG;AACH,SAAgB,iBAAiB,CAAC,QAAkB,EAAE,iBAA2B;IAC/E,IAAI,UAAU,GAAG,EAAE,CAAC;IACpB,MAAM,eAAe,GAAuB,EAAE,GAAG,QAAQ,EAAE,CAAC;IAC5D,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,GAAG,IAAA,8BAAe,EAAC,eAAe,EAAE,iBAAiB,CAAC,CAAC;IAEtF,IAAI,WAAW,EAAE;QACf,gBAAG,CAAC,KAAK,CAAC,KAAK,EAAE,gCAAgC,CAAC,CAAC;QACnD,UAAU,GAAG,IAAA,wBAAQ,EAAC,KAAK,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,mBAAmB,EAAE,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC;KACzF;SAAM;QACL,gBAAG,CAAC,KAAK,CAAC,KAAK,EAAE,oCAAoC,CAAC,CAAC;QACvD,UAAU,GAAG,IAAA,wBAAQ,EACnB,KAAK,EACL,CAAC,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,CAAC,EACjF,QAAQ,CACT,CAAC;KACH;IAED,MAAM,CAAC,CAAC,EAAE,OAAO,EAAE,OAAO,CAAC,GAAG,kCAAkC,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IACxF,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC;AACrD,CAAC;AAnBD,8CAmBC"}
@@ -0,0 +1,20 @@
1
+ import { ExecOpts, RemoteCommit } from '../models';
2
+ /**
3
+ * Get all commits from GitHub remote repository, using GitHub Graphql API, by providing a date to query from
4
+ * https://docs.github.com/en/graphql/reference/objects#repository
5
+ * @param {RemoteClientType} client
6
+ * @param {String} gitRemote
7
+ * @param {String} branchName
8
+ * @param {ExecOpts} execOpts
9
+ * @returns {Promise<RemoteCommit[]>}
10
+ */
11
+ export declare function getGithubCommits(gitRemote: string, branchName: string, sinceDate: string, execOpts: ExecOpts): Promise<RemoteCommit[]>;
12
+ /**
13
+ * From a dot (.) notation path, find and return a property within an object given a complex object path
14
+ * Note that the object path does should not include the parent itself
15
+ * for example if we want to get `address.zip` from `user` object, we would call `getDescendantObjectProp(user, 'address.zip')`
16
+ * @param object - object to search from
17
+ * @param path - complex object path to find descendant property from, must be a string with dot (.) notation
18
+ * @returns outputValue - the object property value found if any
19
+ */
20
+ export declare function getDescendantObjectProp<T>(object: any, path: string | undefined): T;
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getDescendantObjectProp = exports.getGithubCommits = void 0;
7
+ const dedent_1 = __importDefault(require("dedent"));
8
+ const npmlog_1 = __importDefault(require("npmlog"));
9
+ const git_clients_1 = require("../git-clients");
10
+ const QUERY_PAGE_SIZE = 100; // GitHub API is restricting max of 100 per query
11
+ /**
12
+ * Get all commits from GitHub remote repository, using GitHub Graphql API, by providing a date to query from
13
+ * https://docs.github.com/en/graphql/reference/objects#repository
14
+ * @param {RemoteClientType} client
15
+ * @param {String} gitRemote
16
+ * @param {String} branchName
17
+ * @param {ExecOpts} execOpts
18
+ * @returns {Promise<RemoteCommit[]>}
19
+ */
20
+ async function getGithubCommits(gitRemote, branchName, sinceDate, execOpts) {
21
+ var _a, _b, _c, _d, _e, _f;
22
+ const repo = (0, git_clients_1.parseGitRepo)(gitRemote, execOpts);
23
+ const octokit = (0, git_clients_1.createGitHubClient)();
24
+ const remoteCommits = [];
25
+ let afterCursor = '';
26
+ let hasNextPage = false;
27
+ do {
28
+ const afterCursorStr = afterCursor ? `, after: "${afterCursor}"` : '';
29
+ const queryStr = (0, dedent_1.default)(`
30
+ query getCommits($repo: String!, $owner: String!, $branchName: String!, $pageSize: Int!, $since: GitTimestamp!) {
31
+ repository(name: $repo, owner: $owner) {
32
+ ref(qualifiedName: $branchName) {
33
+ target { ... on Commit {
34
+ history(first: $pageSize, since: $since ${afterCursorStr}) {
35
+ nodes { oid, message, author { name, user { login }}}
36
+ pageInfo { hasNextPage, endCursor }
37
+ }}}}}}`).trim();
38
+ const response = await octokit.graphql(queryStr, {
39
+ owner: repo.owner,
40
+ repo: repo.name,
41
+ afterCursor,
42
+ branchName,
43
+ pageSize: QUERY_PAGE_SIZE,
44
+ since: sinceDate,
45
+ });
46
+ const historyData = getDescendantObjectProp(response, 'repository.ref.target.history');
47
+ const pageInfo = historyData === null || historyData === void 0 ? void 0 : historyData.pageInfo;
48
+ hasNextPage = (_a = pageInfo === null || pageInfo === void 0 ? void 0 : pageInfo.hasNextPage) !== null && _a !== void 0 ? _a : false;
49
+ afterCursor = (_b = pageInfo === null || pageInfo === void 0 ? void 0 : pageInfo.endCursor) !== null && _b !== void 0 ? _b : '';
50
+ if (historyData === null || historyData === void 0 ? void 0 : historyData.nodes) {
51
+ for (const commit of historyData.nodes) {
52
+ if ((commit === null || commit === void 0 ? void 0 : commit.oid) && (commit === null || commit === void 0 ? void 0 : commit.author)) {
53
+ remoteCommits.push({
54
+ shortHash: commit.oid.substring(0, 7),
55
+ authorName: commit === null || commit === void 0 ? void 0 : commit.author.name,
56
+ login: (_e = (_d = (_c = commit === null || commit === void 0 ? void 0 : commit.author) === null || _c === void 0 ? void 0 : _c.user) === null || _d === void 0 ? void 0 : _d.login) !== null && _e !== void 0 ? _e : '',
57
+ message: (_f = commit === null || commit === void 0 ? void 0 : commit.message) !== null && _f !== void 0 ? _f : '',
58
+ });
59
+ }
60
+ }
61
+ }
62
+ } while (hasNextPage);
63
+ npmlog_1.default.verbose('github', 'found %s commits since last release timestamp %s', remoteCommits.length, sinceDate);
64
+ return remoteCommits;
65
+ }
66
+ exports.getGithubCommits = getGithubCommits;
67
+ /**
68
+ * From a dot (.) notation path, find and return a property within an object given a complex object path
69
+ * Note that the object path does should not include the parent itself
70
+ * for example if we want to get `address.zip` from `user` object, we would call `getDescendantObjectProp(user, 'address.zip')`
71
+ * @param object - object to search from
72
+ * @param path - complex object path to find descendant property from, must be a string with dot (.) notation
73
+ * @returns outputValue - the object property value found if any
74
+ */
75
+ function getDescendantObjectProp(object, path) {
76
+ if (!object || !path) {
77
+ return object;
78
+ }
79
+ return path.split('.').reduce((obj, prop) => obj && obj[prop], object);
80
+ }
81
+ exports.getDescendantObjectProp = getDescendantObjectProp;
82
+ //# sourceMappingURL=get-github-commits.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-github-commits.js","sourceRoot":"","sources":["../../src/conventional-commits/get-github-commits.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,7 @@
1
1
  export * from './constants';
2
2
  export * from './get-changelog-config';
3
+ export * from './get-commits-since-last-release';
4
+ export * from './get-github-commits';
3
5
  export * from './make-bump-only-filter';
4
6
  export * from './read-existing-changelog';
5
7
  export * from './recommend-version';
@@ -16,6 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./constants"), exports);
18
18
  __exportStar(require("./get-changelog-config"), exports);
19
+ __exportStar(require("./get-commits-since-last-release"), exports);
20
+ __exportStar(require("./get-github-commits"), exports);
19
21
  __exportStar(require("./make-bump-only-filter"), exports);
20
22
  __exportStar(require("./read-existing-changelog"), exports);
21
23
  __exportStar(require("./recommend-version"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/conventional-commits/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,yDAAuC;AACvC,0DAAwC;AACxC,4DAA0C;AAC1C,sDAAoC;AACpC,qDAAmC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/conventional-commits/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,yDAAuC;AACvC,mEAAiD;AACjD,uDAAqC;AACrC,0DAAwC;AACxC,4DAA0C;AAC1C,sDAAoC;AACpC,qDAAmC"}
@@ -1,11 +1,12 @@
1
- import { UpdateChangelogOption } from '../models';
1
+ import { ChangelogType, UpdateChangelogOption } from '../models';
2
2
  import { Package } from '../package';
3
3
  /**
4
- * @param {import("@lerna/package").Package} pkg
5
- * @param {import("..").ChangelogType} type
6
- * @param {import("..").BaseChangelogOptions & { version?: string }} commandOptions
4
+ * Update changelog with the commits of the new release
5
+ * @param {Package} pkg
6
+ * @param {ChangelogType} type
7
+ * @param {UpdateChangelogOption} commandOptions
7
8
  */
8
- export declare function updateChangelog(pkg: Package, type: 'root' | 'independent' | 'fixed', updateOptions: UpdateChangelogOption): Promise<{
9
+ export declare function updateChangelog(pkg: Package, type: ChangelogType, updateOptions: UpdateChangelogOption): Promise<{
9
10
  logPath: any;
10
11
  newEntry: string;
11
12
  }>;
@@ -13,13 +13,14 @@ const get_changelog_config_1 = require("./get-changelog-config");
13
13
  const make_bump_only_filter_1 = require("./make-bump-only-filter");
14
14
  const read_existing_changelog_1 = require("./read-existing-changelog");
15
15
  /**
16
- * @param {import("@lerna/package").Package} pkg
17
- * @param {import("..").ChangelogType} type
18
- * @param {import("..").BaseChangelogOptions & { version?: string }} commandOptions
16
+ * Update changelog with the commits of the new release
17
+ * @param {Package} pkg
18
+ * @param {ChangelogType} type
19
+ * @param {UpdateChangelogOption} commandOptions
19
20
  */
20
21
  async function updateChangelog(pkg, type, updateOptions) {
21
22
  npmlog_1.default.silly(type, 'for %s at %s', pkg.name, pkg.location);
22
- const { changelogPreset, rootPath, tagPrefix = 'v', version, changelogIncludeCommitAuthorFullname, changelogHeaderMessage = '', changelogVersionMessage = '', } = updateOptions;
23
+ const { changelogPreset, changelogIncludeCommitsGitAuthor, changelogIncludeCommitsClientLogin, changelogHeaderMessage = '', changelogVersionMessage = '', commitsSinceLastRelease, rootPath, tagPrefix = 'v', version, } = updateOptions;
23
24
  const config = await get_changelog_config_1.GetChangelogConfig.getChangelogConfig(changelogPreset, rootPath);
24
25
  const options = {};
25
26
  const context = {}; // pass as positional because cc-core's merge-config is wack
@@ -38,8 +39,8 @@ async function updateChangelog(pkg, type, updateOptions) {
38
39
  // available formats can be found at Git's url: https://git-scm.com/docs/git-log#_pretty_formats
39
40
  // we will later extract a defined token from the string, of ">>author=%an<<",
40
41
  // and reformat the string to get a commit string that would add (@authorName) to the end of the commit string, ie:
41
- // **deps:** update all non-major dependencies ([ed1db35](https://github.com/ghiscoding/lerna-lite/commit/ed1db35)) (@Renovate-Bot)
42
- if (changelogIncludeCommitAuthorFullname) {
42
+ // **deps:** update all non-major dependencies ([ed1db35](https://github.com/.../ed1db35)) (@Renovate-Bot)
43
+ if (changelogIncludeCommitsGitAuthor) {
43
44
  gitRawCommitsOpts.format = '%B%n-hash-%n%H>>author=%an<<';
44
45
  }
45
46
  if (type === 'root') {
@@ -71,10 +72,14 @@ async function updateChangelog(pkg, type, updateOptions) {
71
72
  (0, get_stream_1.default)(changelogStream).then((0, make_bump_only_filter_1.makeBumpOnlyFilter)(pkg)),
72
73
  (0, read_existing_changelog_1.readExistingChangelog)(pkg),
73
74
  ]).then(([inputEntry, [changelogFileLoc, changelogContents]]) => {
74
- // are we including commit author's name in changelog?
75
- const newEntry = changelogIncludeCommitAuthorFullname
76
- ? parseChangelogCommitAuthorFullName(inputEntry, changelogIncludeCommitAuthorFullname)
77
- : inputEntry;
75
+ let newEntry = inputEntry;
76
+ // include commit author name or commit client login name
77
+ if (changelogIncludeCommitsGitAuthor) {
78
+ newEntry = parseChangelogCommitAuthorFullName(inputEntry, changelogIncludeCommitsGitAuthor);
79
+ }
80
+ else if (changelogIncludeCommitsClientLogin && commitsSinceLastRelease) {
81
+ newEntry = parseChangelogCommitClientLogin(inputEntry, commitsSinceLastRelease, changelogIncludeCommitsClientLogin);
82
+ }
78
83
  npmlog_1.default.silly(type, 'writing new entry: %j', newEntry);
79
84
  const changelogVersion = type === 'root' ? changelogVersionMessage : '';
80
85
  const changelogHeader = constants_1.CHANGELOG_HEADER.replace(/%s/g, type === 'root' ? ((changelogHeaderMessage === null || changelogHeaderMessage === void 0 ? void 0 : changelogHeaderMessage.length) > 0 ? changelogHeaderMessage + constants_1.EOL : '') : '');
@@ -101,27 +106,56 @@ exports.updateChangelog = updateChangelog;
101
106
  * https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/git-raw-commits/index.js#L27
102
107
  *
103
108
  * We will transform a string that looks like this:
104
- * "deps: update all non-major dependencies ([ed1db35](https://github.com/ghiscoding/lerna-lite/commit/ed1db35>>author=Renovate Bot<<))"
109
+ * "deps: update all non-major dependencies ([ed1db35](https://github.com/.../ed1db35>>author=Whitesource Renovate<<))"
105
110
  * then extract the commit author's name and transform it into a new string that will look like below
106
- * "deps: update all non-major dependencies ([ed1db35](https://github.com/ghiscoding/lerna-lite/commit/ed1db35)) (@Renovate-Bot)"
107
- * @param changelogEntry - changelog entry of a version being released which can contain multiple line entries
111
+ * "deps: update all non-major dependencies ([ed1db35](https://github.com/.../ed1db35)) (Whitesource Whitesource)"
112
+ * @param {String} changelogEntry - changelog entry of a version being released which can contain multiple line entries
113
+ * @param {String | Boolean} [commitCustomFormat]
108
114
  * @returns
109
115
  */
110
- function parseChangelogCommitAuthorFullName(changelogEntry, commitAuthorFullnameMessage) {
116
+ function parseChangelogCommitAuthorFullName(changelogEntry, commitCustomFormat) {
111
117
  // to transform the string into what we want, we need to move the substring outside of the url and remove extra search tokens
112
118
  // from this:
113
- // "...ed1db35>>author=Renovate Bot<<))"
119
+ // "...ed1db35>>author=Whitesource Renovate<<))"
114
120
  // into this:
115
- // "...ed1db35)) (Renovate-Bot)"
121
+ // "...ed1db35)) (Whitesource Renovate)"
116
122
  // or as a custom message like this " by **%a**" into this:
117
- // "...ed1db35)) by **Renovate-Bot**"
123
+ // "...ed1db35)) by **Whitesource Renovate**"
118
124
  return changelogEntry.replace(/(.*)(>>author=)(.*)(<<)(.*)/g, (_, lineStart, _tokenStart, authorName, _tokenEnd, lineEnd) => {
119
- // rebuild the commit string, we'll also replace any whitespaces to hypen in author's name to make it a valid "@" user ref
125
+ // rebuild the commit line entry string
120
126
  const commitMsg = `${lineStart}${lineEnd || ''}`;
121
- const authorMsg = typeof commitAuthorFullnameMessage === 'string'
122
- ? commitAuthorFullnameMessage.replace(/%a/g, authorName || '')
127
+ const authorMsg = typeof commitCustomFormat === 'string'
128
+ ? commitCustomFormat.replace(/%a/g, authorName || '')
123
129
  : ` (${authorName})`;
124
130
  return commitMsg + authorMsg;
125
131
  });
126
132
  }
133
+ /**
134
+ * For each commit line entry, we will append the remote client login username for the first commit entry found, for example:
135
+ * "commit message ([ed1db35](https://github.com/.../ed1db35)) (@renovate-bot)"
136
+ * @param {String} changelogEntry - changelog entry of a version being released which can contain multiple line entries
137
+ * @param {Array<RemoteCommit>} commitsSinceLastRelease
138
+ * @param {String | Boolean} [commitCustomFormat]
139
+ * @returns
140
+ */
141
+ function parseChangelogCommitClientLogin(changelogEntry, commitsSinceLastRelease, commitCustomFormat) {
142
+ const entriesOutput = [];
143
+ for (const lineEntry of changelogEntry.split('\n')) {
144
+ let lineEntryOutput = lineEntry;
145
+ const [_, __, shortSha] = lineEntry.match(/(\[([0-9a-f]{7})\])/) || []; // pull first commit match only
146
+ if (shortSha) {
147
+ const remoteCommit = commitsSinceLastRelease.find((c) => c.shortHash === shortSha);
148
+ if (remoteCommit) {
149
+ const clientLogin = typeof commitCustomFormat === 'string'
150
+ ? commitCustomFormat.replace(/%l/g, remoteCommit.login || '').replace(/%a/g, remoteCommit.authorName || '')
151
+ : ` (@${remoteCommit.login})`;
152
+ // when we have a match, we need to remove any line breaks at the line ending only,
153
+ // then add our user info and finally add back a single line break
154
+ lineEntryOutput = lineEntry.replace(/\n*$/, '') + clientLogin;
155
+ }
156
+ }
157
+ entriesOutput.push(lineEntryOutput);
158
+ }
159
+ return entriesOutput.join('\n');
160
+ }
127
161
  //# sourceMappingURL=update-changelog.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-changelog.js","sourceRoot":"","sources":["../../src/conventional-commits/update-changelog.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"update-changelog.js","sourceRoot":"","sources":["../../src/conventional-commits/update-changelog.ts"],"names":[],"mappings":"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"}
@@ -1,3 +1,4 @@
1
+ import { RemoteClientType } from './interfaces';
1
2
  export interface ChangedCommandOption {
2
3
  /** use conventional-changelog to determine version bump and generate CHANGELOG. */
3
4
  conventionalCommits?: boolean;
@@ -124,20 +125,29 @@ export interface VersionCommandOption {
124
125
  conventionalGraduate?: boolean | string;
125
126
  /** Version changed packages as prereleases when using --conventional-commits. */
126
127
  conventionalPrerelease?: boolean | string;
127
- /** Add a custom message at the top of your "changelog.md" which is located in the root of your project. This option only works when using --conventional-commits. */
128
+ /** Add a custom message at the top of your "changelog.md" which is located in the root of your project. This option is only available when using --conventional-commits with changelogs. */
128
129
  changelogHeaderMessage?: string;
129
130
  /**
130
- * Specify if we want to include the commit author's name, when using conventional-commits with changelog.
131
- * We can optionally provide a custom message or else a default format will be used.
131
+ * Specify if we want to include the commit author's name, this option is only available when using --conventional-commits with changelogs.
132
+ * We can also optionally provide a custom message or else a default format will be used.
132
133
  */
134
+ changelogIncludeCommitsGitAuthor?: boolean | string;
135
+ /** @deprecated option renamed to `changelogIncludeCommitsGitAuthor` */
133
136
  changelogIncludeCommitAuthorFullname?: boolean | string;
137
+ /**
138
+ * Specify if we want to include the commit remote client login name (ie GitHub username), this option is only available when using --conventional-commits with changelogs.
139
+ * We can also optionally provide a custom message or else a default format will be used.
140
+ */
141
+ changelogIncludeCommitsClientLogin?: boolean | string;
134
142
  /**
135
143
  * Add a custom message as a prefix to each new version in your "changelog.md" which is located in the root of your project.
136
- * This option only works when using --conventional-commits.
144
+ * This option is only available when using --conventional-commits with changelogs.
137
145
  */
138
146
  changelogVersionMessage?: string;
139
147
  /** Defaults 'angular', custom conventional-changelog preset. */
140
148
  changelogPreset?: string;
149
+ /** Create an official GitHub or GitLab release for every version. */
150
+ createRelease?: RemoteClientType;
141
151
  /** Specify cross-dependency version numbers exactly rather than with a caret (^). */
142
152
  exact?: boolean;
143
153
  /** Always include targeted packages in versioning operations, skipping default logic. */
@@ -146,8 +156,6 @@ export interface VersionCommandOption {
146
156
  gitDryRun?: boolean;
147
157
  /** Defaults to 'origin', push git changes to the specified remote. */
148
158
  gitRemote: string;
149
- /** Create an official GitHub or GitLab release for every version. */
150
- createRelease?: 'gitlab' | 'github';
151
159
  /**
152
160
  * Ignore changes in files matched by glob(s) when detecting changed packages.
153
161
  * Pass --no-ignore-changes to completely disable.
@@ -187,6 +195,8 @@ export interface VersionCommandOption {
187
195
  push?: boolean;
188
196
  /** Defaults to 'alpha', specify the prerelease identifier when versioning a prerelease */
189
197
  preid?: string;
198
+ /** Remote git client, which client is used when reading commits from remote which is useful when associating client login for each changelog entry. */
199
+ remoteClient?: RemoteClientType;
190
200
  /** Pass the `--gpg-sign` flag to `git commit`. */
191
201
  signGitCommit?: boolean;
192
202
  /** Pass the `--signoff` flag to `git commit`. */
@@ -203,7 +213,10 @@ export interface VersionCommandOption {
203
213
  manuallyUpdateRootLockfile?: boolean;
204
214
  /** Runs `npm install --package-lock-only` or equivalent depending on the package manager defined in `npmClient` */
205
215
  syncWorkspaceLock?: boolean;
206
- /** Strict match transform version numbers to an exact range (like "1.2.3") rather than with a caret (like ^1.2.3) when using `workspace:*`. */
216
+ /**
217
+ * @deprecated Strict match transform version numbers to an exact range (like "1.2.3") rather than with a caret (like ^1.2.3) when using `workspace:*`.
218
+ * Future version will make `workspace:` protocol as strict matching at all time, so this flag becomes redundant.
219
+ */
207
220
  workspaceStrictMatch?: boolean;
208
221
  /** alias to '--yes' */
209
222
  y?: boolean;
@@ -24,6 +24,7 @@ export interface DescribeRefOptions {
24
24
  }
25
25
  export interface DescribeRefFallbackResult {
26
26
  isDirty: boolean;
27
+ lastVersion?: string;
27
28
  lastTagName?: string;
28
29
  refCount: number | string;
29
30
  sha: string;
@@ -41,13 +42,19 @@ export interface ExecOpts {
41
42
  maxBuffer?: number;
42
43
  }
43
44
  export interface LifecycleConfig {
44
- log?: typeof log;
45
+ access?: 'public' | 'restricted';
46
+ defaultTag?: string;
45
47
  ignorePrepublish?: boolean;
46
48
  ignoreScripts?: boolean;
49
+ log: log.Logger;
50
+ lernaCommand?: string;
47
51
  nodeOptions?: string;
52
+ projectScope?: string | null;
48
53
  scriptShell?: string;
49
54
  scriptsPrependNodePath?: boolean;
50
55
  snapshot?: any;
56
+ stdio?: string;
57
+ tag?: string;
51
58
  unsafePerm?: boolean;
52
59
  }
53
60
  export interface Manifest {
@@ -60,19 +67,23 @@ export interface UpdateChangelogOption {
60
67
  changelogHeaderMessage?: string;
61
68
  changelogVersionMessage?: string;
62
69
  changelogPreset?: string;
63
- changelogIncludeCommitAuthorFullname?: boolean | string;
70
+ changelogIncludeCommitsGitAuthor?: boolean | string;
71
+ changelogIncludeCommitsClientLogin?: boolean | string;
72
+ commitsSinceLastRelease?: RemoteCommit[];
64
73
  rootPath?: string;
65
74
  tagPrefix?: string;
66
75
  version?: string;
76
+ /** @deprecated this option was renamed to `changelogIncludeCommitsGitAuthor` */
77
+ changelogIncludeCommitAuthorFullname?: boolean | string;
67
78
  }
68
79
  export interface FetchConfig {
69
80
  fetchRetries: number;
70
- log: typeof log;
81
+ log: log.Logger;
71
82
  registry: string;
72
83
  username: string;
73
84
  }
74
85
  export interface PackConfig {
75
- log: typeof log;
86
+ log: log.Logger;
76
87
  lernaCommand?: string;
77
88
  ignorePrepublish?: boolean;
78
89
  }
@@ -125,7 +136,7 @@ export declare type NpaResolveResult = (npa.FileResult | npa.HostedGitResult | n
125
136
  };
126
137
  /** Passed between concurrent executions */
127
138
  export interface OneTimePasswordCache {
128
- otp?: string;
139
+ otp?: string | number;
129
140
  }
130
141
  export interface LernaConfig {
131
142
  command?: {
@@ -150,7 +161,7 @@ export interface ProjectConfig extends LernaConfig, QueryGraphConfig {
150
161
  lernaVersion: string;
151
162
  progress?: boolean;
152
163
  since?: string;
153
- sort?: any;
164
+ sort?: boolean;
154
165
  stream?: boolean;
155
166
  useNx?: boolean;
156
167
  onRejected?: (result: any) => void;
@@ -177,6 +188,17 @@ export interface ReleaseNote {
177
188
  name: string;
178
189
  notes?: string;
179
190
  }
191
+ export declare type RemoteClientType = 'gitlab' | 'github';
192
+ export declare type RemoteCommit = {
193
+ /** git commit author name */
194
+ authorName: string;
195
+ /** remote client login (ie github login) */
196
+ login: string;
197
+ /** commit message headling (50 chars maxlen) */
198
+ message: string;
199
+ /** short commit hash (7 chars long) */
200
+ shortHash: string;
201
+ };
180
202
  export interface UpdateCollectorOptions {
181
203
  /** The semver bump keyword (patch/minor/major) or explicit version used */
182
204
  bump?: string;
@@ -187,13 +209,13 @@ export interface UpdateCollectorOptions {
187
209
  /** Whether or not to include the --first-parent flag when calling `git describe` (awkwardly, pass `true` to _omit_ the flag, the default is to include it) */
188
210
  includeMergedTags?: boolean;
189
211
  /** Which packages, if any, to always include. Force all packages to be versioned with `true`, or pass a list of globs that match package names */
190
- forcePublish?: boolean | string[];
212
+ forcePublish?: boolean | string | string[];
191
213
  /** Ref to use when querying git, defaults to most recent annotated tag */
192
214
  since?: string;
193
215
  /** are we using Lerna independent mode? */
194
216
  isIndependent?: boolean;
195
217
  /** are we using conventional commits? */
196
218
  conventionalCommits?: boolean;
197
- conventionalGraduate?: boolean;
219
+ conventionalGraduate?: boolean | string;
198
220
  excludeDependents?: boolean;
199
221
  }
package/dist/package.d.ts CHANGED
@@ -45,10 +45,18 @@ export declare class Package {
45
45
  });
46
46
  get contents(): string;
47
47
  set contents(subDirectory: string);
48
- get dependencies(): string[];
49
- get devDependencies(): string[];
50
- get optionalDependencies(): string[];
51
- get peerDependencies(): string[];
48
+ get dependencies(): {
49
+ [depName: string]: string;
50
+ };
51
+ get devDependencies(): {
52
+ [depName: string]: string;
53
+ };
54
+ get optionalDependencies(): {
55
+ [depName: string]: string;
56
+ };
57
+ get peerDependencies(): {
58
+ [depName: string]: string;
59
+ };
52
60
  get pkg(): Package;
53
61
  /**
54
62
  * Map-like retrieval of arbitrary values
package/dist/package.js CHANGED
@@ -251,7 +251,7 @@ class Package {
251
251
  // when using explicit `workspace:` protocol
252
252
  if (resolved.explicitWorkspace) {
253
253
  const workspaceTarget = (_a = resolved === null || resolved === void 0 ? void 0 : resolved.workspaceTarget) !== null && _a !== void 0 ? _a : '';
254
- const [_, _wsTxt, operatorPrefix, rangePrefix] = workspaceTarget.match(/^(workspace:)?([<>=]{0,2})?([*^~])?(.*)$/);
254
+ const [_, _wsTxt, operatorPrefix, rangePrefix] = workspaceTarget.match(/^(workspace:)?([<>=]{0,2})?([*^~])?(.*)$/) || [];
255
255
  if (operatorPrefix) {
256
256
  // with workspace it might include an operator, if so use it like "workspace:>=1.2.3"
257
257
  depCollection[depName] = `${operatorPrefix}${depVersion}`;
@@ -1 +1 @@
1
- {"version":3,"file":"package.js","sourceRoot":"","sources":["../src/package.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"package.js","sourceRoot":"","sources":["../src/package.ts"],"names":[],"mappings":";;;;;;AAAA,oEAA0C;AAC1C,sEAAkC;AAClC,oDAA4B;AAC5B,gDAAwB;AACxB,0DAAiC;AAIjC,uCAAuC;AACvC,MAAM,GAAG,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;AAE1B,iBAAiB;AACjB,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;AACrC,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;AACrC,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;AACrC,MAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACnC,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;AAErC;;GAEG;AACH,SAAS,WAAW,CAAC,EAAE,IAAI,EAAE,KAAK,EAAc;IAC9C,OAAO,KAAK,CAAC,CAAC,CAAC,IAAK,CAAC,SAAS,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AAC1D,CAAC;AAED,8EAA8E;AAC9E,SAAS,WAAW,CAAC,IAAS;IAC5B,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;QAC3C,MAAM,GAAG,GAAQ,IAAI,CAAC,GAAG,CAAC,CAAC;QAE3B,wBAAwB;QACxB,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACtB,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,KAAK,EAAE,CAAC;SACxB;aAAM,IAAI,GAAG,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;YACzC,GAAG,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC;SACnC;aAAM;YACL,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;SAChB;QAED,OAAO,GAAG,CAAC;IACb,CAAC,EAAE,EAAE,CAAC,CAAC;AACT,CAAC;AAED;;;GAGG;AACH,MAAa,OAAO;IA6BlB;;;;OAIG;IACH,YAAY,GAAgB,EAAE,QAAgB,EAAE,QAAQ,GAAG,QAAQ;;QAjCnE,QAAG,GAAG,EAAE,CAAC;QAET,gBAAW,GAAG,EAAE,CAAC;QACjB,sBAAiB,GAAG,IAAI,GAAG,EAAe,CAAC;QA+BzC,iDAAiD;QACjD,MAAM,QAAQ,GAAG,yBAAG,CAAC,OAAO,CAAC,MAAA,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,IAAI,mCAAI,EAAE,EAAE,QAAQ,cAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC;QAErG,IAAI,CAAC,IAAI,GAAG,MAAA,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,IAAI,mCAAI,EAAE,CAAC;QAC5B,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;QAEhB,oFAAoF;QACpF,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;QAExE,IAAI,CAAC,SAAS,CAAC,GAAG,QAAQ,CAAC;QAC3B,IAAI,CAAC,SAAS,CAAC,GAAG,QAAQ,CAAC;QAC3B,IAAI,CAAC,SAAS,CAAC,GAAG,QAAQ,CAAC;QAC3B,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IACtC,CAAC;IA1CD;;;;;OAKG;IACH,MAAM,CAAC,IAAI,CAAC,GAAmC,EAAE,GAAG,GAAG,GAAG;QACxD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;YAC3B,MAAM,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,cAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,cAAc,CAAC,CAAC,CAAC,cAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YAC/F,MAAM,QAAQ,GAAG,wBAAY,CAAC,IAAI,CAAc,cAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC,CAAC;YAErF,OAAO,IAAI,OAAO,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;SACxC;QAED,wEAAwE;QACxE,IAAI,kBAAkB,IAAI,GAAG,EAAE;YAC7B,OAAO,GAAG,CAAC;SACZ;QAED,8BAA8B;QAC9B,OAAO,IAAI,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IAC/B,CAAC;IAuBD,mBAAmB;IACnB,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;IACzB,CAAC;IAED,IAAI,OAAO;QACT,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,CAAC;IACpC,CAAC;IAED,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;IACzB,CAAC;IAED,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;IACzB,CAAC;IAED,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;IAED,IAAI,GAAG;QACL,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QACtB,OAAO,OAAO,GAAG,CAAC,GAAG,KAAK,QAAQ;YAChC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,QAAiC,CAAW,CAAC,EAAE,GAAG,CAAC,GAAG,EAAE;YAC9E,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;IACjC,CAAC;IAED,IAAI,WAAW;QACb,OAAO,cAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,cAAc,EAAE,MAAM,CAAC,CAAC;IAC1D,CAAC;IAED,IAAI,gBAAgB;QAClB,OAAO,cAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC;IAClD,CAAC;IAED,IAAI,mBAAmB;QACrB,OAAO,cAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC;IAClD,CAAC;IAED,kDAAkD;IAClD,IAAI,gBAAgB;QAClB,iDAAiD;QACjD,OAAO,IAAI,CAAC;IACd,CAAC;IAED,YAAY;IACZ,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC;IAC3B,CAAC;IAED,IAAI,OAAO,CAAC,OAAe;QACzB,IAAI,CAAC,GAAG,CAAC,CAAC,OAAO,GAAG,OAAO,CAAC;IAC9B,CAAC;IAED,IAAI,UAAU;QACZ,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC;IAC9B,CAAC;IAED,IAAI,UAAU,CAAC,UAA6C;QAC1D,IAAI,CAAC,GAAG,CAAC,CAAC,UAAU,GAAG,UAAU,CAAC;IACpC,CAAC;IAED,IAAI,QAAQ;QACV,0CAA0C;QAC1C,IAAI,IAAI,CAAC,SAAS,CAAC,EAAE;YACnB,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;SACxB;QAED,mDAAmD;QACnD,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,aAAa,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,aAAa,CAAC,SAAS,EAAE;YAChE,OAAO,cAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC;SACpE;QAED,0BAA0B;QAC1B,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;IAED,IAAI,QAAQ,CAAC,YAAoB;QAC/B,IAAI,CAAC,SAAS,CAAC,GAAG,cAAI,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;IAC3D,CAAC;IAED,qBAAqB;IACrB,IAAI,YAAY;QACd,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,YAAY,CAAC;IAChC,CAAC;IAED,IAAI,eAAe;QACjB,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,eAAe,CAAC;IACnC,CAAC;IAED,IAAI,oBAAoB;QACtB,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,oBAAoB,CAAC;IACxC,CAAC;IAED,IAAI,gBAAgB;QAClB,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,gBAAgB,CAAC;IACpC,CAAC;IAED,IAAI,GAAG;QACL,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;IACnB,CAAC;IAED;;;;;OAKG;IACH,GAAG,CAA8B,GAAW;QAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IACxB,CAAC;IAED;;;;;;OAMG;IACH,GAAG,CAAC,GAAW,EAAE,GAAmC;QAClD,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;QAErB,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;OAGG;IACH,MAAM;QACJ,OAAO,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;IAChC,CAAC;IAED;;OAEG;IACH,OAAO;QACL,OAAO,IAAA,wBAAY,EAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE;YACtD,IAAI,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;YAEhB,OAAO,IAAI,CAAC;QACd,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,SAAS;QACP,OAAO,IAAA,mBAAQ,EAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IACrE,CAAC;IAED;;;;OAIG;IACH,uCAAuC,CAAC,OAAe,EAAE,QAA0B;;QACjF,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAc,CAAC;QACxC,MAAM,aAAa,GAAG,IAAI,CAAC,2BAA2B,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACtE,MAAM,eAAe,GAAG,MAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,eAAe,mCAAI,EAAE,CAAC;QAExD,IACE,aAAa;YACb,CAAC,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,IAAI,KAAK,WAAW,CAAC;YACpD,qBAAqB,CAAC,IAAI,CAAC,eAAe,CAAC,EAC3C;YACA,IAAI,eAAe,EAAE;gBACnB,IAAI,QAAQ,CAAC,SAAS,KAAK,QAAQ,EAAE;oBACnC,gBAAM,CAAC,KAAK,CACV,SAAS,EACT;wBACE,uBAAuB,OAAO,8FAA8F;wBAC5H,+DAA+D;wBAC/D,sDAAsD,OAAO,OAAO,QAAQ,CAAC,SAAS,IAAI;qBAC3F,CAAC,IAAI,CAAC,EAAE,CAAC,CACX,CAAC;iBACH;gBACD,aAAa,CAAC,OAAO,CAAC,GAAG,QAAQ,CAAC,SAAmB,CAAC;aACvD;SACF;IACH,CAAC;IAED;;;;;;;OAOG;IACH,qBAAqB,CACnB,QAA0B,EAC1B,UAAkB,EAClB,UAAkB,EAClB,oBAAoB,GAAG,IAAI,EAC3B,gBAA8B;;QAE9B,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAc,CAAC;QACxC,MAAM,aAAa,GAAG,IAAI,CAAC,2BAA2B,CAAC,OAAO,CAAC,CAAC;QAEhE,IAAI,aAAa,IAAI,CAAC,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC,IAAI,KAAK,WAAW,CAAC,EAAE;YACzE,qEAAqE;YACrE,aAAa,CAAC,OAAO,CAAC,GAAG,GAAG,UAAU,GAAG,UAAU,EAAE,CAAC;YAEtD,4CAA4C;YAC5C,IAAI,QAAQ,CAAC,iBAAiB,EAAE;gBAC9B,MAAM,eAAe,GAAG,MAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,eAAe,mCAAI,EAAE,CAAC;gBACxD,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,cAAc,EAAE,WAAW,CAAC,GAC5C,eAAe,CAAC,KAAK,CAAC,0CAA0C,CAAC,IAAI,EAAE,CAAC;gBAE1E,IAAI,cAAc,EAAE;oBAClB,qFAAqF;oBACrF,aAAa,CAAC,OAAO,CAAC,GAAG,GAAG,cAAc,GAAG,UAAU,EAAE,CAAC;iBAC3D;qBAAM,IAAI,oBAAoB,EAAE;oBAC/B,wFAAwF;oBACxF,aAAa,CAAC,OAAO,CAAC,GAAG,GAAG,WAAW,IAAI,EAAE,GAAG,UAAU,EAAE,CAAC;iBAC9D;gBAED,IAAI,gBAAgB,KAAK,SAAS,EAAE;oBAClC,0EAA0E;oBAC1E,gJAAgJ;oBAChJ,IAAI,oBAAoB,EAAE;wBACxB,IAAI,eAAe,KAAK,aAAa,EAAE;4BACrC,aAAa,CAAC,OAAO,CAAC,GAAG,UAAU,CAAC,CAAC,2BAA2B;yBACjE;6BAAM,IAAI,eAAe,KAAK,aAAa,EAAE;4BAC5C,aAAa,CAAC,OAAO,CAAC,GAAG,IAAI,UAAU,EAAE,CAAC,CAAC,4BAA4B;yBACxE;6BAAM,IAAI,eAAe,KAAK,aAAa,EAAE;4BAC5C,aAAa,CAAC,OAAO,CAAC,GAAG,IAAI,UAAU,EAAE,CAAC,CAAC,4BAA4B;yBACxE;qBACF;oBACD,+EAA+E;oBAC/E,iFAAiF;iBAClF;qBAAM;oBACL,oGAAoG;oBACpG,6FAA6F;oBAC7F,6FAA6F;oBAC7F,aAAa,CAAC,OAAO,CAAC,GAAG,sBAAsB,CAAC,IAAI,CAAC,eAAe,CAAC;wBACnE,CAAC,CAAE,QAAQ,CAAC,eAA0B,CAAC,iFAAiF;wBACxH,CAAC,CAAC,aAAa,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,2EAA2E;iBACvH;aACF;SACF;aAAM,IAAI,QAAQ,CAAC,aAAa,EAAE;YACjC,yDAAyD;YACzD,MAAM,CAAC,SAAS,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAoB,CAAC;YAE3E,oBAAoB;YACpB,MAAM,EAAE,MAAM,EAAE,GAAG,QAAe,CAAC,CAAC,mBAAmB;YACvD,MAAM,CAAC,UAAU,GAAG,GAAG,SAAS,GAAG,UAAU,EAAE,CAAC;YAEhD,0EAA0E;YAC1E,aAAa,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC,CAAC;SACrF;aAAM,IAAI,QAAQ,CAAC,QAAQ,EAAE;YAC5B,oDAAoD;YACpD,MAAM,EAAE,MAAM,EAAE,GAAG,QAAe,CAAC,CAAC,mBAAmB;YACvD,MAAM,CAAC,UAAU,GAAG,UAAU,UAAU,GAAG,UAAU,EAAE,CAAC;YAExD,0EAA0E;YAC1E,aAAa,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC,CAAC;SACrF;IACH,CAAC;IAED;;;;;OAKG;IACK,2BAA2B,CAAC,OAAe,EAAE,uBAAuB,GAAG,KAAK;QAClF,kCAAkC;QAClC,IAAI,aAAa,GAAG,IAAI,CAAC,YAAY,CAAC;QAEtC,+CAA+C;QAC/C,IAAI,CAAC,aAAa,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE;YAC7C,aAAa,GAAG,IAAI,CAAC,oBAAoB,CAAC;SAC3C;QAED,+BAA+B;QAC/B,IAAI,CAAC,aAAa,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,EAAE;YAC7C,aAAa,GAAG,IAAI,CAAC,eAAe,CAAC;SACtC;QAED,+CAA+C;QAC/C,IAAI,uBAAuB,IAAI,CAAC,CAAC,aAAa,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,EAAE;YAC1E,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC;SACvC;QAED,OAAO,aAAa,CAAC;IACvB,CAAC;CACF;AApVD,0BAoVC"}
@@ -2,4 +2,4 @@
2
2
  * @param {boolean|string|string[]} option
3
3
  * @returns {Set<string>} A set of package names (or wildcard) derived from option value.
4
4
  */
5
- export declare function getPackagesForOption(option: boolean | string | string[]): Set<string>;
5
+ export declare function getPackagesForOption(option?: boolean | string | string[]): Set<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"get-packages-for-option.js","sourceRoot":"","sources":["../../../../src/utils/collect-updates/lib/get-packages-for-option.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACH,SAAgB,oBAAoB,CAAC,MAAmC;IACtE,6CAA6C;IAC7C,qBAAqB;IACrB,IAAI,MAAM,GAAoB,IAAI,CAAC;IAEnC,IAAI,MAAM,KAAK,IAAI,EAAE;QACnB,+DAA+D;QAC/D,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;KAChB;SAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QACrC,qEAAqE;QACrE,oBAAoB;QACpB,sBAAsB;QACtB,0BAA0B;QAC1B,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC5B;SAAM,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QAChC,6DAA6D;QAC7D,0CAA0C;QAC1C,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC,CAAC;KACtB;IAED,OAAO,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC;AACzB,CAAC;AArBD,oDAqBC"}
1
+ {"version":3,"file":"get-packages-for-option.js","sourceRoot":"","sources":["../../../../src/utils/collect-updates/lib/get-packages-for-option.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACH,SAAgB,oBAAoB,CAAC,MAAoC;IACvE,6CAA6C;IAC7C,qBAAqB;IACrB,IAAI,MAAM,GAAoB,IAAI,CAAC;IAEnC,IAAI,MAAM,KAAK,IAAI,EAAE;QACnB,+DAA+D;QAC/D,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;KAChB;SAAM,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QACrC,qEAAqE;QACrE,oBAAoB;QACpB,sBAAsB;QACtB,0BAA0B;QAC1B,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;KAC5B;SAAM,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QAChC,6DAA6D;QAC7D,0CAA0C;QAC1C,MAAM,GAAG,CAAC,GAAG,MAAM,CAAC,CAAC;KACtB;IAED,OAAO,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC;AACzB,CAAC;AArBD,oDAqBC"}
@@ -1,6 +1,7 @@
1
+ import { ExecOpts } from '../../../models';
1
2
  /**
2
3
  * Determine if any git tags are reachable.
3
4
  * @param {import("@lerna/child-process").ExecOpts} opts
4
5
  * @param {string} tagPattern
5
6
  */
6
- export declare function hasTags(opts: any, tagPattern: string): boolean;
7
+ export declare function hasTags(opts?: ExecOpts, tagPattern?: string): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"has-tags.js","sourceRoot":"","sources":["../../../../src/utils/collect-updates/lib/has-tags.ts"],"names":[],"mappings":";;;;;;AAAA,oDAAyB;AAEzB,0DAAkD;AAElD;;;;GAIG;AACH,SAAgB,OAAO,CAAC,IAAI,EAAE,UAAkB;IAC9C,gBAAG,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;IACzB,IAAI,MAAM,GAAG,KAAK,CAAC;IACnB,MAAM,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC;IAErB,IAAI,UAAU,EAAE;QACd,gBAAG,CAAC,OAAO,CAAC,SAAS,EAAE,yBAAyB,UAAU,WAAW,CAAC,CAAC;QACvE,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;KACjC;IAED,IAAI;QACF,MAAM,GAAG,CAAC,CAAC,IAAA,wBAAQ,EAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;KACxC;IAAC,OAAO,GAAQ,EAAE;QACjB,gBAAG,CAAC,IAAI,CAAC,SAAS,EAAE,8CAA8C,CAAC,CAAC;QACpE,gBAAG,CAAC,OAAO,CAAC,eAAe,EAAE,GAAG,CAAC,CAAC;KACnC;IAED,gBAAG,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE1C,OAAO,MAAM,CAAC;AAChB,CAAC;AApBD,0BAoBC"}
1
+ {"version":3,"file":"has-tags.js","sourceRoot":"","sources":["../../../../src/utils/collect-updates/lib/has-tags.ts"],"names":[],"mappings":";;;;;;AAAA,oDAAyB;AAEzB,0DAAkD;AAGlD;;;;GAIG;AACH,SAAgB,OAAO,CAAC,IAAe,EAAE,UAAmB;IAC1D,gBAAG,CAAC,KAAK,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;IACzB,IAAI,MAAM,GAAG,KAAK,CAAC;IACnB,MAAM,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC;IAErB,IAAI,UAAU,EAAE;QACd,gBAAG,CAAC,OAAO,CAAC,SAAS,EAAE,yBAAyB,UAAU,WAAW,CAAC,CAAC;QACvE,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;KACjC;IAED,IAAI;QACF,MAAM,GAAG,CAAC,CAAC,IAAA,wBAAQ,EAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;KACxC;IAAC,OAAO,GAAQ,EAAE;QACjB,gBAAG,CAAC,IAAI,CAAC,SAAS,EAAE,8CAA8C,CAAC,CAAC;QACpE,gBAAG,CAAC,OAAO,CAAC,eAAe,EAAE,GAAG,CAAC,CAAC;KACnC;IAED,gBAAG,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE1C,OAAO,MAAM,CAAC;AAChB,CAAC;AApBD,0BAoBC"}
@@ -7,6 +7,8 @@ exports.createRunner = exports.runLifecycle = void 0;
7
7
  const npmlog_1 = __importDefault(require("npmlog"));
8
8
  const run_script_1 = __importDefault(require("@npmcli/run-script"));
9
9
  const npm_conf_1 = require("../utils/npm-conf");
10
+ const p_queue_1 = __importDefault(require("p-queue"));
11
+ const queue = new p_queue_1.default({ concurrency: 1 });
10
12
  /**
11
13
  * Alias dash-cased npmConf to camelCase
12
14
  * @param {LifecycleConfig} obj
@@ -45,6 +47,7 @@ function runLifecycle(pkg, stage, options) {
45
47
  options = options.snapshot;
46
48
  }
47
49
  const opts = {
50
+ // @ts-ignore
48
51
  log: npmlog_1.default,
49
52
  unsafePerm: true,
50
53
  ...flattenOptions(options),
@@ -87,40 +90,46 @@ function runLifecycle(pkg, stage, options) {
87
90
  opts.log.info('lifecycle', `${id}~${stage}: ${id}`);
88
91
  /**
89
92
  * In order to match the previous behavior of 'npm-lifecycle', we have to disable the writing
90
- * to the parent process and print the command banner ourself.
93
+ * to the parent process and print the command banner ourselves, unless overridden by the options.
91
94
  */
92
- const stdio = 'pipe';
95
+ const stdio = opts.stdio || 'pipe';
93
96
  if (npmlog_1.default.level !== 'silent') {
94
97
  printCommandBanner(id, stage, pkg.scripts[stage], dir);
95
98
  }
96
- return (0, run_script_1.default)({
97
- event: stage,
98
- path: dir,
99
- pkg,
100
- args: [],
101
- stdio,
102
- banner: false,
103
- scriptShell: config.scriptShell,
104
- }).then(({ stdout }) => {
105
- /**
106
- * This adjustment is based on trying to match the existing integration test outputs when migrating
107
- * from 'npm-lifecycle' to '@npmcli/run-script'.
108
- */
109
- // eslint-disable-next-line no-console
110
- console.log(stdout.toString().trimEnd());
111
- opts.log.silly('lifecycle', '%j finished in %j', stage, pkg.name);
112
- }, (err) => {
113
- // propagate the exit code
114
- const exitCode = err.code || 1;
115
- // error logging has already occurred on stderr, but we need to stop the chain
116
- npmlog_1.default.error('lifecycle', '%j errored in %j, exiting %d', stage, pkg.name, exitCode);
117
- // ensure clean logging, avoiding spurious log dump
118
- err.name = 'ValidationError';
119
- // our yargs.fail() handler expects a numeric .exitCode, not .errno
120
- err.exitCode = exitCode;
121
- process.exitCode = exitCode;
122
- // stop the chain
123
- throw err;
99
+ return queue.add(async () => {
100
+ try {
101
+ const { stdout } = await (0, run_script_1.default)({
102
+ event: stage,
103
+ path: dir,
104
+ pkg,
105
+ args: [],
106
+ stdio,
107
+ banner: false,
108
+ scriptShell: config.scriptShell,
109
+ });
110
+ if (stdout) {
111
+ /**
112
+ * This adjustment is based on trying to match the existing integration test outputs when migrating
113
+ * from "npm-lifecycle" to "@npmcli/run-script".
114
+ */
115
+ // eslint-disable-next-line no-console
116
+ console.log(stdout.toString().trimEnd());
117
+ }
118
+ opts.log.silly('lifecycle', '%j finished in %j', stage, pkg.name);
119
+ }
120
+ catch (err) {
121
+ // propagate the exit code
122
+ const exitCode = err.code || 1;
123
+ // error logging has already occurred on stderr, but we need to stop the chain
124
+ npmlog_1.default.error('lifecycle', '%j errored in %j, exiting %d', stage, pkg.name, exitCode);
125
+ // ensure clean logging, avoiding spurious log dump
126
+ err.name = 'ValidationError';
127
+ // our yargs.fail() handler expects a numeric .exitCode, not .errno
128
+ err.exitCode = exitCode;
129
+ process.exitCode = exitCode;
130
+ // stop the chain
131
+ throw err;
132
+ }
124
133
  });
125
134
  }
126
135
  exports.runLifecycle = runLifecycle;
@@ -1 +1 @@
1
- {"version":3,"file":"run-lifecycle.js","sourceRoot":"","sources":["../../src/utils/run-lifecycle.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"run-lifecycle.js","sourceRoot":"","sources":["../../src/utils/run-lifecycle.ts"],"names":[],"mappings":"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"}
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": "1.8.0",
4
+ "version": "1.9.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "typings": "dist/index.d.ts",
@@ -111,5 +111,5 @@
111
111
  "type": "ko_fi",
112
112
  "url": "https://ko-fi.com/ghiscoding"
113
113
  },
114
- "gitHead": "ada7348275854aacb334f8d9650f5f0f2b4318f2"
114
+ "gitHead": "e3119a07519ba789c7f5095caf8554933e2719ea"
115
115
  }