@storm-software/git-tools 2.114.1 → 2.115.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/README.md +1 -2
- package/bin/{chunk-EBHPAULB.cjs → chunk-O7PN47AE.cjs} +550 -250
- package/bin/{chunk-W7SSBH3S.js → chunk-XOHAV6VL.js} +550 -250
- package/bin/git.cjs +65 -65
- package/bin/git.js +1 -1
- package/bin/post-checkout.cjs +9 -9
- package/bin/post-checkout.js +1 -1
- package/bin/post-commit.cjs +9 -9
- package/bin/post-commit.js +1 -1
- package/bin/post-merge.cjs +9 -9
- package/bin/post-merge.js +1 -1
- package/bin/pre-commit.cjs +9 -9
- package/bin/pre-commit.js +1 -1
- package/bin/pre-install.cjs +9 -9
- package/bin/pre-install.js +1 -1
- package/bin/pre-push.cjs +13 -13
- package/bin/pre-push.js +1 -1
- package/bin/prepare.cjs +7 -7
- package/bin/prepare.js +1 -1
- package/bin/version-warning.cjs +5 -5
- package/bin/version-warning.js +1 -1
- package/package.json +4 -4
package/bin/git.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkO7PN47AE_cjs = require('./chunk-O7PN47AE.cjs');
|
|
6
6
|
var TOML = require('@ltd/j-toml');
|
|
7
7
|
var commander = require('commander');
|
|
8
8
|
var prompts = require('@inquirer/prompts');
|
|
@@ -915,7 +915,7 @@ function getRuleFromScopeEnum(scopeEnum) {
|
|
|
915
915
|
// src/commitlint/run.ts
|
|
916
916
|
var COMMIT_EDITMSG_PATH = ".git/COMMIT_EDITMSG";
|
|
917
917
|
var runCommitLint = async (config, params) => {
|
|
918
|
-
|
|
918
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
919
919
|
"\u{1F4DD} Validating git commit message aligns with the Storm Software specification",
|
|
920
920
|
config
|
|
921
921
|
);
|
|
@@ -923,7 +923,7 @@ var runCommitLint = async (config, params) => {
|
|
|
923
923
|
if (params.message && params.message !== COMMIT_EDITMSG_PATH) {
|
|
924
924
|
commitMessage = params.message;
|
|
925
925
|
} else {
|
|
926
|
-
const commitFile =
|
|
926
|
+
const commitFile = chunkO7PN47AE_cjs.joinPaths(
|
|
927
927
|
config.workspaceRoot,
|
|
928
928
|
params.file || params.message || COMMIT_EDITMSG_PATH
|
|
929
929
|
);
|
|
@@ -940,17 +940,17 @@ var runCommitLint = async (config, params) => {
|
|
|
940
940
|
if (upstreamRemote) {
|
|
941
941
|
const upstreamRemoteIdentifier = upstreamRemote.split(" ")[0]?.trim();
|
|
942
942
|
if (!upstreamRemoteIdentifier) {
|
|
943
|
-
|
|
943
|
+
chunkO7PN47AE_cjs.writeWarning(
|
|
944
944
|
`No upstream remote found for ${config.name}.git. Skipping comparison.`,
|
|
945
945
|
config
|
|
946
946
|
);
|
|
947
947
|
return;
|
|
948
948
|
}
|
|
949
|
-
|
|
949
|
+
chunkO7PN47AE_cjs.writeDebug(`Comparing against remote ${upstreamRemoteIdentifier}`);
|
|
950
950
|
const currentBranch = childProcess__default.default.execSync("git branch --show-current").toString().trim();
|
|
951
951
|
gitLogCmd = gitLogCmd + ` ${currentBranch} ^${upstreamRemoteIdentifier}/main`;
|
|
952
952
|
} else {
|
|
953
|
-
|
|
953
|
+
chunkO7PN47AE_cjs.writeWarning(
|
|
954
954
|
`No upstream remote found for ${config.name}.git. Skipping comparison against upstream main.`,
|
|
955
955
|
config
|
|
956
956
|
);
|
|
@@ -958,7 +958,7 @@ var runCommitLint = async (config, params) => {
|
|
|
958
958
|
}
|
|
959
959
|
commitMessage = childProcess__default.default.execSync(gitLogCmd).toString().trim();
|
|
960
960
|
if (!commitMessage) {
|
|
961
|
-
|
|
961
|
+
chunkO7PN47AE_cjs.writeWarning(
|
|
962
962
|
"No commits found. Skipping commit message validation.",
|
|
963
963
|
config
|
|
964
964
|
);
|
|
@@ -971,7 +971,7 @@ var runCommitLint = async (config, params) => {
|
|
|
971
971
|
});
|
|
972
972
|
const commitMsgRegex = `(${allowedTypes})\\((${allowedScopes})\\)!?:\\s(([a-z0-9:-s])+)`;
|
|
973
973
|
const matchCommit = new RegExp(commitMsgRegex, "g").test(commitMessage);
|
|
974
|
-
const commitlintConfig =
|
|
974
|
+
const commitlintConfig = chunkO7PN47AE_cjs.defu(
|
|
975
975
|
params.config ?? {},
|
|
976
976
|
{ rules: { "scope-enum": getRuleFromScopeEnum(allowedScopes) } },
|
|
977
977
|
DEFAULT_COMMITLINT_CONFIG
|
|
@@ -981,7 +981,7 @@ var runCommitLint = async (config, params) => {
|
|
|
981
981
|
helpUrl: commitlintConfig.helpUrl
|
|
982
982
|
});
|
|
983
983
|
if (!matchCommit || report.errors.length || report.warnings.length) {
|
|
984
|
-
|
|
984
|
+
chunkO7PN47AE_cjs.writeSuccess(`Commit was processing completed successfully!`, config);
|
|
985
985
|
} else {
|
|
986
986
|
let errorMessage = " Oh no! Your commit message: \n-------------------------------------------------------------------\n" + commitMessage + "\n-------------------------------------------------------------------\n\n Does not follow the commit message convention specified by Storm Software.";
|
|
987
987
|
errorMessage += "\ntype(scope): subject \n BLANK LINE \n body";
|
|
@@ -1053,14 +1053,14 @@ async function createState(config, commitizenFile = "@storm-software/git-tools/c
|
|
|
1053
1053
|
answers: {}
|
|
1054
1054
|
};
|
|
1055
1055
|
} else {
|
|
1056
|
-
|
|
1056
|
+
chunkO7PN47AE_cjs.writeInfo(`Using custom commit config file: ${commitizenFile}`, config);
|
|
1057
1057
|
let commitizenConfig = await import(commitizenFile);
|
|
1058
1058
|
if (commitizenConfig?.default) {
|
|
1059
1059
|
commitizenConfig = commitizenConfig?.default;
|
|
1060
1060
|
}
|
|
1061
1061
|
state = {
|
|
1062
1062
|
config: await resolveCommitOptions(
|
|
1063
|
-
|
|
1063
|
+
chunkO7PN47AE_cjs.defu(commitizenConfig ?? {}, DEFAULT_COMMIT_CONFIG),
|
|
1064
1064
|
config
|
|
1065
1065
|
),
|
|
1066
1066
|
root,
|
|
@@ -1116,7 +1116,7 @@ async function createState(config, commitizenFile = "@storm-software/git-tools/c
|
|
|
1116
1116
|
const project = projectConfigurations.projects[scope];
|
|
1117
1117
|
if (project) {
|
|
1118
1118
|
let description = `${project.name} - ${project.root}`;
|
|
1119
|
-
const packageJsonPath =
|
|
1119
|
+
const packageJsonPath = chunkO7PN47AE_cjs.joinPaths(project.root, "package.json");
|
|
1120
1120
|
if (fs$1.existsSync(packageJsonPath)) {
|
|
1121
1121
|
const packageJsonFile = await fs.readFile(packageJsonPath, "utf8");
|
|
1122
1122
|
const packageJson = JSON.parse(packageJsonFile);
|
|
@@ -1193,10 +1193,10 @@ ${closedIssueEmoji}${config.prompt.settings.closedIssueMessage}${issues}`;
|
|
|
1193
1193
|
|
|
1194
1194
|
// src/commit/run.ts
|
|
1195
1195
|
var runCommit = async (commitizenFile = "@storm-software/git-tools/commit/config", dryRun = false) => {
|
|
1196
|
-
const config = await
|
|
1196
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
1197
1197
|
const state = await createState(config, commitizenFile);
|
|
1198
1198
|
if (dryRun) {
|
|
1199
|
-
|
|
1199
|
+
chunkO7PN47AE_cjs.writeInfo("Running in dry mode.", config);
|
|
1200
1200
|
}
|
|
1201
1201
|
console.log(chalkTemplate__default.default`
|
|
1202
1202
|
{bold.#999999 ----------------------------------------}
|
|
@@ -1206,7 +1206,7 @@ var runCommit = async (commitizenFile = "@storm-software/git-tools/commit/config
|
|
|
1206
1206
|
`);
|
|
1207
1207
|
state.answers = await askQuestions(state);
|
|
1208
1208
|
const message = formatCommitMessage(state);
|
|
1209
|
-
const commitMsgFile =
|
|
1209
|
+
const commitMsgFile = chunkO7PN47AE_cjs.joinPaths(getGitDir(), "COMMIT_EDITMSG");
|
|
1210
1210
|
console.log(chalkTemplate__default.default`
|
|
1211
1211
|
{bold.#999999 ----------------------------------------}
|
|
1212
1212
|
|
|
@@ -1219,11 +1219,11 @@ var runCommit = async (commitizenFile = "@storm-software/git-tools/commit/config
|
|
|
1219
1219
|
commandItems.push(...["--file", commitMsgFile]);
|
|
1220
1220
|
const command = shellescape__default.default(commandItems);
|
|
1221
1221
|
if (dryRun) {
|
|
1222
|
-
|
|
1222
|
+
chunkO7PN47AE_cjs.writeDebug(
|
|
1223
1223
|
`Skipping execution [dry-run]: ${command.replace(commitMsgFile, ".git/COMMIT_EDITMSG")}`,
|
|
1224
1224
|
config
|
|
1225
1225
|
);
|
|
1226
|
-
|
|
1226
|
+
chunkO7PN47AE_cjs.writeDebug(`Message [dry-run]: ${message}`, config);
|
|
1227
1227
|
} else {
|
|
1228
1228
|
await fs__default.default.writeFile(commitMsgFile, message);
|
|
1229
1229
|
chunkCIJVSMK2_cjs.run(config, command);
|
|
@@ -2457,7 +2457,7 @@ var StormChangelogRenderer = class extends DefaultChangelogRenderer__default.def
|
|
|
2457
2457
|
};
|
|
2458
2458
|
}
|
|
2459
2459
|
async render() {
|
|
2460
|
-
this.workspaceConfig = await
|
|
2460
|
+
this.workspaceConfig = await chunkO7PN47AE_cjs.getWorkspaceConfig();
|
|
2461
2461
|
return await super.render();
|
|
2462
2462
|
}
|
|
2463
2463
|
preprocessChanges() {
|
|
@@ -2768,7 +2768,7 @@ async function createOrUpdateGithubReleaseInternal(githubRequestConfig, release,
|
|
|
2768
2768
|
if (!shouldContinueInGitHub) {
|
|
2769
2769
|
return;
|
|
2770
2770
|
}
|
|
2771
|
-
const open =
|
|
2771
|
+
const open = chunkO7PN47AE_cjs.__require("open");
|
|
2772
2772
|
await open(result.url).then(() => {
|
|
2773
2773
|
console.info(
|
|
2774
2774
|
`
|
|
@@ -2881,7 +2881,7 @@ async function resolveTokenData(hostname) {
|
|
|
2881
2881
|
);
|
|
2882
2882
|
if (fs$1.existsSync(ghCLIPath)) {
|
|
2883
2883
|
const yamlContents = await fs$1.promises.readFile(ghCLIPath, "utf8");
|
|
2884
|
-
const { load } =
|
|
2884
|
+
const { load } = chunkO7PN47AE_cjs.__require("@zkochan/js-yaml");
|
|
2885
2885
|
const ghCLIConfig = load(yamlContents);
|
|
2886
2886
|
if (ghCLIConfig[hostname]) {
|
|
2887
2887
|
if (ghCLIConfig[hostname].oauth_token) {
|
|
@@ -2995,7 +2995,7 @@ async function isUserAnOrganizationMember(userId, config, remoteName = "origin")
|
|
|
2995
2995
|
// src/release/changelog.ts
|
|
2996
2996
|
function createAPI(overrideReleaseConfig) {
|
|
2997
2997
|
return async function releaseChangelog(args) {
|
|
2998
|
-
const workspaceConfig = await
|
|
2998
|
+
const workspaceConfig = await chunkO7PN47AE_cjs.getWorkspaceConfig();
|
|
2999
2999
|
const projectGraph$1 = await projectGraph.createProjectGraphAsync({ exitOnError: true });
|
|
3000
3000
|
const nxJson$1 = nxJson.readNxJson();
|
|
3001
3001
|
const userProvidedReleaseConfig = deepMergeJson.deepMergeJson(
|
|
@@ -3696,7 +3696,7 @@ async function generateChangelogForWorkspace({
|
|
|
3696
3696
|
workspaceChangelogVersion,
|
|
3697
3697
|
changes
|
|
3698
3698
|
}) {
|
|
3699
|
-
const workspaceConfig = await
|
|
3699
|
+
const workspaceConfig = await chunkO7PN47AE_cjs.getWorkspaceConfig();
|
|
3700
3700
|
if (!workspaceConfig) {
|
|
3701
3701
|
throw new Error(
|
|
3702
3702
|
`Unable to determine the Storm workspace config. Please ensure that your storm-workspace.json file is present and valid.`
|
|
@@ -3810,7 +3810,7 @@ async function generateChangelogForProjects({
|
|
|
3810
3810
|
nxReleaseConfig,
|
|
3811
3811
|
projectToAdditionalDependencyBumps
|
|
3812
3812
|
}) {
|
|
3813
|
-
const workspaceConfig = await
|
|
3813
|
+
const workspaceConfig = await chunkO7PN47AE_cjs.getWorkspaceConfig();
|
|
3814
3814
|
if (!workspaceConfig) {
|
|
3815
3815
|
throw new Error(
|
|
3816
3816
|
`Unable to determine the Storm workspace config. Please ensure that your storm-workspace.json file is present and valid.`
|
|
@@ -4115,7 +4115,7 @@ var runRelease = async (config, options) => {
|
|
|
4115
4115
|
throw new Error("The `GITHUB_ACTOR` environment variable is not set.");
|
|
4116
4116
|
}
|
|
4117
4117
|
if (!await isUserAnOrganizationMember(process.env.GITHUB_ACTOR, config)) {
|
|
4118
|
-
|
|
4118
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
4119
4119
|
"You must be a member of the Storm Software organization to run the release process.",
|
|
4120
4120
|
config
|
|
4121
4121
|
);
|
|
@@ -4132,12 +4132,12 @@ var runRelease = async (config, options) => {
|
|
|
4132
4132
|
process.env.NODE_AUTH_TOKEN = process.env.NPM_TOKEN;
|
|
4133
4133
|
process.env.NPM_AUTH_TOKEN = process.env.NPM_TOKEN;
|
|
4134
4134
|
process.env.NPM_CONFIG_PROVENANCE = "true";
|
|
4135
|
-
|
|
4135
|
+
chunkO7PN47AE_cjs.writeDebug("Creating workspace Project Graph data...", config);
|
|
4136
4136
|
const nxJson = nxJson_js.readNxJson();
|
|
4137
|
-
|
|
4137
|
+
chunkO7PN47AE_cjs.writeDebug("Reading in the workspaces release configuration", config);
|
|
4138
4138
|
const to = options.head || process.env.NX_HEAD;
|
|
4139
4139
|
const from = options.base || process.env.NX_BASE;
|
|
4140
|
-
|
|
4140
|
+
chunkO7PN47AE_cjs.writeDebug(
|
|
4141
4141
|
`Using the following Git SHAs to determine the release content:
|
|
4142
4142
|
- From: ${from}
|
|
4143
4143
|
- To: ${to}
|
|
@@ -4148,28 +4148,28 @@ var runRelease = async (config, options) => {
|
|
|
4148
4148
|
nxJson.release.groups = Object.keys(nxJson.release.groups).reduce(
|
|
4149
4149
|
(ret, groupName) => {
|
|
4150
4150
|
const groupConfig = nxJson.release?.groups?.[groupName];
|
|
4151
|
-
ret[groupName] =
|
|
4151
|
+
ret[groupName] = chunkO7PN47AE_cjs.defu(groupConfig, DEFAULT_RELEASE_GROUP_CONFIG);
|
|
4152
4152
|
return ret;
|
|
4153
4153
|
},
|
|
4154
4154
|
{}
|
|
4155
4155
|
);
|
|
4156
4156
|
}
|
|
4157
|
-
const nxReleaseConfig =
|
|
4157
|
+
const nxReleaseConfig = chunkO7PN47AE_cjs.defu(
|
|
4158
4158
|
nxJson.release,
|
|
4159
4159
|
DEFAULT_RELEASE_CONFIG
|
|
4160
4160
|
);
|
|
4161
|
-
|
|
4161
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
4162
4162
|
"Using the following `nx.json` release configuration values",
|
|
4163
4163
|
config
|
|
4164
4164
|
);
|
|
4165
|
-
|
|
4165
|
+
chunkO7PN47AE_cjs.writeInfo(nxReleaseConfig, config);
|
|
4166
4166
|
const releaseVersion = version_js.createAPI(nxReleaseConfig);
|
|
4167
4167
|
const releaseChangelog = createAPI(nxReleaseConfig);
|
|
4168
4168
|
const releasePublish = publish_js.createAPI(nxReleaseConfig);
|
|
4169
|
-
|
|
4169
|
+
chunkO7PN47AE_cjs.writeDebug("Determining the current release versions...", config);
|
|
4170
4170
|
const { workspaceVersion, projectsVersionData } = await releaseVersion({
|
|
4171
4171
|
dryRun: false,
|
|
4172
|
-
verbose:
|
|
4172
|
+
verbose: chunkO7PN47AE_cjs.isVerbose(config.logLevel),
|
|
4173
4173
|
preid: config.preid,
|
|
4174
4174
|
deleteVersionPlans: false,
|
|
4175
4175
|
stageChanges: true,
|
|
@@ -4180,15 +4180,15 @@ var runRelease = async (config, options) => {
|
|
|
4180
4180
|
version: nxReleaseConfig?.projectsRelationship !== "fixed" ? void 0 : workspaceVersion,
|
|
4181
4181
|
versionData: projectsVersionData,
|
|
4182
4182
|
dryRun: false,
|
|
4183
|
-
verbose:
|
|
4183
|
+
verbose: chunkO7PN47AE_cjs.isVerbose(config.logLevel),
|
|
4184
4184
|
to,
|
|
4185
4185
|
from,
|
|
4186
4186
|
gitCommit: true,
|
|
4187
4187
|
gitCommitMessage: "release(monorepo): Publish workspace release updates"
|
|
4188
4188
|
});
|
|
4189
|
-
|
|
4189
|
+
chunkO7PN47AE_cjs.writeDebug("Tagging commit with git", config);
|
|
4190
4190
|
if (options.skipPublish) {
|
|
4191
|
-
|
|
4191
|
+
chunkO7PN47AE_cjs.writeWarning(
|
|
4192
4192
|
"Skipping publishing packages since `skipPublish` was provided as `true` in the release options.",
|
|
4193
4193
|
config
|
|
4194
4194
|
);
|
|
@@ -4197,7 +4197,7 @@ var runRelease = async (config, options) => {
|
|
|
4197
4197
|
(key) => projectsVersionData[key]?.newVersion
|
|
4198
4198
|
);
|
|
4199
4199
|
if (changedProjects.length > 0) {
|
|
4200
|
-
|
|
4200
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
4201
4201
|
`Publishing release for ${changedProjects.length} ${changedProjects.length === 1 ? "project" : "projects"}:
|
|
4202
4202
|
${changedProjects.map((changedProject) => ` - ${changedProject}`).join("\n")}
|
|
4203
4203
|
`,
|
|
@@ -4207,7 +4207,7 @@ ${changedProjects.map((changedProject) => ` - ${changedProject}`).join("\n")}
|
|
|
4207
4207
|
const result = await releasePublish({
|
|
4208
4208
|
...options,
|
|
4209
4209
|
dryRun: !!options.dryRun,
|
|
4210
|
-
verbose:
|
|
4210
|
+
verbose: chunkO7PN47AE_cjs.isVerbose(config.logLevel)
|
|
4211
4211
|
});
|
|
4212
4212
|
const failedProjects = Object.keys(result).filter(
|
|
4213
4213
|
(key) => result[key]?.code && result[key]?.code > 0
|
|
@@ -4222,10 +4222,10 @@ ${failedProjects.map((failedProject) => ` - ${failedProject} (Error Code: ${res
|
|
|
4222
4222
|
);
|
|
4223
4223
|
}
|
|
4224
4224
|
} else {
|
|
4225
|
-
|
|
4225
|
+
chunkO7PN47AE_cjs.writeWarning("Skipped publishing packages.", config);
|
|
4226
4226
|
}
|
|
4227
4227
|
}
|
|
4228
|
-
|
|
4228
|
+
chunkO7PN47AE_cjs.writeSuccess("Completed the Storm workspace release process!", config);
|
|
4229
4229
|
};
|
|
4230
4230
|
async function updatePackageManifests(projectsVersionData, config) {
|
|
4231
4231
|
let projectGraph;
|
|
@@ -4240,7 +4240,7 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
4240
4240
|
Object.keys(projectsVersionData).map(async (node) => {
|
|
4241
4241
|
const projectNode = projectGraph.nodes[node];
|
|
4242
4242
|
if (!projectNode?.data.root) {
|
|
4243
|
-
|
|
4243
|
+
chunkO7PN47AE_cjs.writeWarning(
|
|
4244
4244
|
`Project node ${node} not found in the project graph. Skipping manifest update.`,
|
|
4245
4245
|
config
|
|
4246
4246
|
);
|
|
@@ -4248,17 +4248,17 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
4248
4248
|
}
|
|
4249
4249
|
const versionData = projectsVersionData[node];
|
|
4250
4250
|
if (projectNode?.data.root && versionData && versionData.newVersion !== null) {
|
|
4251
|
-
|
|
4251
|
+
chunkO7PN47AE_cjs.writeTrace(
|
|
4252
4252
|
`Writing version ${versionData.newVersion} update to manifest file for ${node}
|
|
4253
4253
|
`,
|
|
4254
4254
|
config
|
|
4255
4255
|
);
|
|
4256
|
-
const projectRoot =
|
|
4256
|
+
const projectRoot = chunkO7PN47AE_cjs.joinPaths(
|
|
4257
4257
|
config.workspaceRoot,
|
|
4258
4258
|
projectNode.data.root
|
|
4259
4259
|
);
|
|
4260
|
-
const packageJsonPath =
|
|
4261
|
-
const cargoTomlPath =
|
|
4260
|
+
const packageJsonPath = chunkO7PN47AE_cjs.joinPaths(projectRoot, "package.json");
|
|
4261
|
+
const cargoTomlPath = chunkO7PN47AE_cjs.joinPaths(projectRoot, "Cargo.toml");
|
|
4262
4262
|
if (fs$1.existsSync(packageJsonPath)) {
|
|
4263
4263
|
const packageJsonContent = await fs.readFile(packageJsonPath, "utf8");
|
|
4264
4264
|
const packageJson = JSON.parse(packageJsonContent);
|
|
@@ -4276,7 +4276,7 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
4276
4276
|
})
|
|
4277
4277
|
);
|
|
4278
4278
|
} else {
|
|
4279
|
-
|
|
4279
|
+
chunkO7PN47AE_cjs.writeWarning("No project nodes found. Skipping manifest updates.", config);
|
|
4280
4280
|
}
|
|
4281
4281
|
}
|
|
4282
4282
|
|
|
@@ -4284,8 +4284,8 @@ async function updatePackageManifests(projectsVersionData, config) {
|
|
|
4284
4284
|
var _config = {};
|
|
4285
4285
|
function createProgram(config) {
|
|
4286
4286
|
_config = config;
|
|
4287
|
-
|
|
4288
|
-
const root =
|
|
4287
|
+
chunkO7PN47AE_cjs.writeInfo("\u26A1 Running Storm Git Tools", config);
|
|
4288
|
+
const root = chunkO7PN47AE_cjs.findWorkspaceRootSafe(process.cwd());
|
|
4289
4289
|
process.env.STORM_WORKSPACE_ROOT ??= root;
|
|
4290
4290
|
process.env.NX_WORKSPACE_ROOT_PATH ??= root;
|
|
4291
4291
|
if (root) {
|
|
@@ -4350,12 +4350,12 @@ async function commitAction({
|
|
|
4350
4350
|
dryRun = false
|
|
4351
4351
|
}) {
|
|
4352
4352
|
try {
|
|
4353
|
-
|
|
4353
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
4354
4354
|
`\u26A1 Preparing to commit your changes. Please provide the requested details below...`,
|
|
4355
4355
|
_config
|
|
4356
4356
|
);
|
|
4357
4357
|
await runCommit(config, dryRun);
|
|
4358
|
-
|
|
4358
|
+
chunkO7PN47AE_cjs.writeSuccess(
|
|
4359
4359
|
`\u{1F389} Storm Commit processing completed successfully!
|
|
4360
4360
|
|
|
4361
4361
|
Note: Please run "pnpm push" to upload these changes to the remote ${_config.name ? _config.name : _config.namespace ? _config.namespace : _config.organization ? _config.organization : "Storm-Software"} Git repository at ${_config.repository}
|
|
@@ -4363,7 +4363,7 @@ Note: Please run "pnpm push" to upload these changes to the remote ${_config.nam
|
|
|
4363
4363
|
_config
|
|
4364
4364
|
);
|
|
4365
4365
|
} catch (error) {
|
|
4366
|
-
|
|
4366
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
4367
4367
|
`A fatal error occurred while running commit action:
|
|
4368
4368
|
|
|
4369
4369
|
${error.message}`,
|
|
@@ -4374,14 +4374,14 @@ ${error.message}`,
|
|
|
4374
4374
|
}
|
|
4375
4375
|
async function readmeAction(options) {
|
|
4376
4376
|
try {
|
|
4377
|
-
|
|
4377
|
+
chunkO7PN47AE_cjs.writeInfo("\u26A1 Formatting the workspace's README.md files", _config);
|
|
4378
4378
|
await runReadme(options);
|
|
4379
|
-
|
|
4379
|
+
chunkO7PN47AE_cjs.writeSuccess(
|
|
4380
4380
|
"Formatting of the workspace's README.md files is complete\n",
|
|
4381
4381
|
_config
|
|
4382
4382
|
);
|
|
4383
4383
|
} catch (error) {
|
|
4384
|
-
|
|
4384
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
4385
4385
|
`A fatal error occurred while running README format action:
|
|
4386
4386
|
|
|
4387
4387
|
${error.message}`
|
|
@@ -4396,7 +4396,7 @@ async function releaseAction({
|
|
|
4396
4396
|
dryRun
|
|
4397
4397
|
}) {
|
|
4398
4398
|
try {
|
|
4399
|
-
|
|
4399
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
4400
4400
|
"\u26A1 Running the Storm Release and Publish process on the workspace",
|
|
4401
4401
|
_config
|
|
4402
4402
|
);
|
|
@@ -4406,9 +4406,9 @@ async function releaseAction({
|
|
|
4406
4406
|
base,
|
|
4407
4407
|
head
|
|
4408
4408
|
});
|
|
4409
|
-
|
|
4409
|
+
chunkO7PN47AE_cjs.writeSuccess("Release completed successfully!\n", _config);
|
|
4410
4410
|
} catch (error) {
|
|
4411
|
-
|
|
4411
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
4412
4412
|
`A fatal error occurred while running release action:
|
|
4413
4413
|
|
|
4414
4414
|
${error.message} ${error.stack ? `
|
|
@@ -4426,7 +4426,7 @@ async function commitLintAction({
|
|
|
4426
4426
|
file
|
|
4427
4427
|
}) {
|
|
4428
4428
|
try {
|
|
4429
|
-
|
|
4429
|
+
chunkO7PN47AE_cjs.writeInfo(
|
|
4430
4430
|
`\u26A1 Linting the ${_config.repository ? _config.repository : _config.namespace ? _config.namespace : _config.name ? _config.name : typeof _config.organization === "string" ? _config.organization : _config.organization?.name ? _config.organization?.name : "Storm-Software"} repository's commit messages.`,
|
|
4431
4431
|
_config
|
|
4432
4432
|
);
|
|
@@ -4435,12 +4435,12 @@ async function commitLintAction({
|
|
|
4435
4435
|
message,
|
|
4436
4436
|
file
|
|
4437
4437
|
});
|
|
4438
|
-
|
|
4438
|
+
chunkO7PN47AE_cjs.writeSuccess(
|
|
4439
4439
|
"Linting the commit messages completed successfully!\n",
|
|
4440
4440
|
_config
|
|
4441
4441
|
);
|
|
4442
4442
|
} catch (error) {
|
|
4443
|
-
|
|
4443
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
4444
4444
|
`A fatal error occurred while linting the commit messages:
|
|
4445
4445
|
|
|
4446
4446
|
${error.message}`,
|
|
@@ -4452,18 +4452,18 @@ ${error.message}`,
|
|
|
4452
4452
|
|
|
4453
4453
|
// bin/git.ts
|
|
4454
4454
|
void (async () => {
|
|
4455
|
-
const config = await
|
|
4455
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
4456
4456
|
try {
|
|
4457
|
-
|
|
4457
|
+
chunkO7PN47AE_cjs.handleProcess(config);
|
|
4458
4458
|
const program = createProgram(config);
|
|
4459
4459
|
await program.parseAsync(process.argv);
|
|
4460
|
-
|
|
4460
|
+
chunkO7PN47AE_cjs.writeSuccess(
|
|
4461
4461
|
`\u{1F389} Git ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`,
|
|
4462
4462
|
config
|
|
4463
4463
|
);
|
|
4464
|
-
|
|
4464
|
+
chunkO7PN47AE_cjs.exitWithSuccess(config);
|
|
4465
4465
|
} catch (error) {
|
|
4466
|
-
|
|
4466
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
4467
4467
|
process.exit(1);
|
|
4468
4468
|
}
|
|
4469
4469
|
})();
|
package/bin/git.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { run } from './chunk-54Q5U5WW.js';
|
|
3
|
-
import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, findWorkspaceRootSafe, writeFatal, joinPaths, writeDebug, defu, isVerbose, writeWarning, getWorkspaceConfig, writeTrace, __require } from './chunk-
|
|
3
|
+
import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, findWorkspaceRootSafe, writeFatal, joinPaths, writeDebug, defu, isVerbose, writeWarning, getWorkspaceConfig, writeTrace, __require } from './chunk-XOHAV6VL.js';
|
|
4
4
|
import TOML from '@ltd/j-toml';
|
|
5
5
|
import { Command, Option } from 'commander';
|
|
6
6
|
import { select, confirm, input } from '@inquirer/prompts';
|
package/bin/post-checkout.cjs
CHANGED
|
@@ -3,33 +3,33 @@
|
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
5
|
var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
|
|
6
|
-
var
|
|
6
|
+
var chunkO7PN47AE_cjs = require('./chunk-O7PN47AE.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-checkout.ts
|
|
9
9
|
void (async () => {
|
|
10
|
-
const config = await
|
|
10
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
11
11
|
try {
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
chunkO7PN47AE_cjs.handleProcess(config);
|
|
13
|
+
chunkO7PN47AE_cjs.writeInfo("Running post-checkout hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
16
|
chunkCIJVSMK2_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
|
-
|
|
18
|
+
chunkO7PN47AE_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.
|
|
20
20
|
Error: ${error?.message}`,
|
|
21
21
|
config
|
|
22
22
|
);
|
|
23
|
-
|
|
23
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
25
|
chunkCIJVSMK2_cjs.run(config, "git lfs post-checkout");
|
|
26
|
-
|
|
26
|
+
chunkO7PN47AE_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
|
-
|
|
28
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
29
29
|
`A fatal error occurred while running the program: ${error.message}`,
|
|
30
30
|
config
|
|
31
31
|
);
|
|
32
|
-
|
|
32
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
33
33
|
process.exit(1);
|
|
34
34
|
}
|
|
35
35
|
})();
|
package/bin/post-checkout.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
3
|
import { run } from './chunk-54Q5U5WW.js';
|
|
4
|
-
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-
|
|
4
|
+
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-XOHAV6VL.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-checkout.ts
|
|
7
7
|
void (async () => {
|
package/bin/post-commit.cjs
CHANGED
|
@@ -3,33 +3,33 @@
|
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
5
|
var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
|
|
6
|
-
var
|
|
6
|
+
var chunkO7PN47AE_cjs = require('./chunk-O7PN47AE.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-commit.ts
|
|
9
9
|
void (async () => {
|
|
10
|
-
const config = await
|
|
10
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
11
11
|
try {
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
chunkO7PN47AE_cjs.handleProcess(config);
|
|
13
|
+
chunkO7PN47AE_cjs.writeInfo("Running post-commit hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
16
|
chunkCIJVSMK2_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
|
-
|
|
18
|
+
chunkO7PN47AE_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.
|
|
20
20
|
Error: ${error?.message}`,
|
|
21
21
|
config
|
|
22
22
|
);
|
|
23
|
-
|
|
23
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
25
|
chunkCIJVSMK2_cjs.run(config, "git lfs post-commit");
|
|
26
|
-
|
|
26
|
+
chunkO7PN47AE_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
|
-
|
|
28
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
29
29
|
`A fatal error occurred while running the program: ${error.message}`,
|
|
30
30
|
config
|
|
31
31
|
);
|
|
32
|
-
|
|
32
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
33
33
|
process.exit(1);
|
|
34
34
|
}
|
|
35
35
|
})();
|
package/bin/post-commit.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
3
|
import { run } from './chunk-54Q5U5WW.js';
|
|
4
|
-
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-
|
|
4
|
+
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-XOHAV6VL.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-commit.ts
|
|
7
7
|
void (async () => {
|
package/bin/post-merge.cjs
CHANGED
|
@@ -3,33 +3,33 @@
|
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
5
|
var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
|
|
6
|
-
var
|
|
6
|
+
var chunkO7PN47AE_cjs = require('./chunk-O7PN47AE.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-merge.ts
|
|
9
9
|
void (async () => {
|
|
10
|
-
const config = await
|
|
10
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
11
11
|
try {
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
chunkO7PN47AE_cjs.handleProcess(config);
|
|
13
|
+
chunkO7PN47AE_cjs.writeInfo("Running post-merge hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
16
|
chunkCIJVSMK2_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
|
-
|
|
18
|
+
chunkO7PN47AE_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.
|
|
20
20
|
Error: ${error?.message}`,
|
|
21
21
|
config
|
|
22
22
|
);
|
|
23
|
-
|
|
23
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
25
|
chunkCIJVSMK2_cjs.run(config, "git lfs post-merge");
|
|
26
|
-
|
|
26
|
+
chunkO7PN47AE_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
|
-
|
|
28
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
29
29
|
`A fatal error occurred while running the program: ${error.message}`,
|
|
30
30
|
config
|
|
31
31
|
);
|
|
32
|
-
|
|
32
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
33
33
|
process.exit(1);
|
|
34
34
|
}
|
|
35
35
|
})();
|
package/bin/post-merge.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
3
|
import { run } from './chunk-54Q5U5WW.js';
|
|
4
|
-
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-
|
|
4
|
+
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-XOHAV6VL.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-merge.ts
|
|
7
7
|
void (async () => {
|
package/bin/pre-commit.cjs
CHANGED
|
@@ -2,29 +2,29 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkO7PN47AE_cjs = require('./chunk-O7PN47AE.cjs');
|
|
6
6
|
|
|
7
7
|
// bin/pre-commit.ts
|
|
8
8
|
void (async () => {
|
|
9
|
-
const config = await
|
|
9
|
+
const config = await chunkO7PN47AE_cjs.getConfig();
|
|
10
10
|
try {
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
chunkO7PN47AE_cjs.handleProcess(config);
|
|
12
|
+
chunkO7PN47AE_cjs.writeInfo("Running pre-commit hook...", config);
|
|
13
13
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv.slice(1));
|
|
14
14
|
if (chunkSWXHQXUT_cjs.isPackageVersionChanged(process.argv?.slice(1))) {
|
|
15
|
-
|
|
15
|
+
chunkO7PN47AE_cjs.writeError(
|
|
16
16
|
"Please regenerate the package lock file before committing...",
|
|
17
17
|
config
|
|
18
18
|
);
|
|
19
|
-
|
|
19
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
chunkO7PN47AE_cjs.exitWithSuccess(config);
|
|
22
22
|
} catch (error) {
|
|
23
|
-
|
|
23
|
+
chunkO7PN47AE_cjs.writeFatal(
|
|
24
24
|
`A fatal error occurred while running the program: ${error.message}`,
|
|
25
25
|
config
|
|
26
26
|
);
|
|
27
|
-
|
|
27
|
+
chunkO7PN47AE_cjs.exitWithError(config);
|
|
28
28
|
process.exit(1);
|
|
29
29
|
}
|
|
30
30
|
})();
|