@storm-software/git-tools 2.124.71 → 2.124.72
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/bin/{chunk-FD6LP4AO.js → chunk-WQI3QHPS.js} +2 -2
- package/bin/chunk-WQI3QHPS.js.map +1 -0
- package/bin/{chunk-2JUV6SZN.cjs → chunk-ZBLIE7F7.cjs} +2 -2
- package/bin/chunk-ZBLIE7F7.cjs.map +1 -0
- package/bin/git.cjs +82 -82
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +3 -3
- package/bin/git.js.map +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 +5 -5
- package/bin/chunk-2JUV6SZN.cjs.map +0 -1
- package/bin/chunk-FD6LP4AO.js.map +0 -1
package/bin/git.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import './chunk-Q3DQKTOI.js';
|
|
3
3
|
import { run } from './chunk-G3YPGVPS.js';
|
|
4
|
-
import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, brandIcon, findWorkspaceRootSafe, writeFatal, getWorkspaceConfig, joinPaths, writeDebug, isVerbose, writeWarning, defu, writeTrace, STORM_DEFAULT_RELEASE_BANNER } from './chunk-
|
|
4
|
+
import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, brandIcon, findWorkspaceRootSafe, writeFatal, getWorkspaceConfig, joinPaths, writeDebug, isVerbose, writeWarning, defu, writeTrace, STORM_DEFAULT_RELEASE_BANNER } from './chunk-WQI3QHPS.js';
|
|
5
5
|
import TOML from '@ltd/j-toml';
|
|
6
6
|
import { Command } from 'commander';
|
|
7
7
|
import '@inquirer/checkbox';
|
|
@@ -3887,7 +3887,7 @@ async function commitAction({
|
|
|
3887
3887
|
);
|
|
3888
3888
|
await runCommit(config5, dryRun);
|
|
3889
3889
|
writeSuccess(
|
|
3890
|
-
`\
|
|
3890
|
+
`\u2714 Storm Commit processing completed successfully!
|
|
3891
3891
|
|
|
3892
3892
|
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}
|
|
3893
3893
|
`,
|
|
@@ -3988,7 +3988,7 @@ void (async () => {
|
|
|
3988
3988
|
const program = createProgram(config5);
|
|
3989
3989
|
await program.parseAsync(process.argv);
|
|
3990
3990
|
writeSuccess(
|
|
3991
|
-
`\
|
|
3991
|
+
`\u2714 Git ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`,
|
|
3992
3992
|
config5
|
|
3993
3993
|
);
|
|
3994
3994
|
exitWithSuccess(config5);
|