@storm-software/git-tools 2.124.68 → 2.124.69
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-GU6JHGME.cjs → chunk-2JUV6SZN.cjs} +96 -563
- package/bin/chunk-2JUV6SZN.cjs.map +1 -0
- package/bin/{chunk-SAG2FKFE.js → chunk-FD6LP4AO.js} +96 -563
- package/bin/chunk-FD6LP4AO.js.map +1 -0
- package/bin/git.cjs +82 -80
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +3 -1
- 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/dist/{chunk-56CSIOQW.cjs → chunk-EMYFDYKP.cjs} +95 -557
- package/dist/{chunk-JEIQJXD6.js → chunk-VVJA5N2W.js} +95 -557
- package/dist/commit/minimal.cjs +0 -1
- package/dist/commit/minimal.js +0 -1
- package/dist/commit/monorepo.cjs +0 -1
- package/dist/commit/monorepo.js +0 -1
- package/dist/commitlint/minimal.cjs +0 -1
- package/dist/commitlint/minimal.js +0 -1
- package/dist/commitlint/monorepo.cjs +0 -1
- package/dist/commitlint/monorepo.js +0 -1
- package/dist/index.cjs +8 -9
- package/dist/index.js +1 -2
- package/dist/release/config.cjs +8 -9
- package/dist/release/config.d.cts +1 -0
- package/dist/release/config.d.ts +1 -0
- package/dist/release/config.js +1 -2
- package/dist/types.cjs +0 -1
- package/dist/types.js +0 -1
- package/package.json +12 -12
- package/bin/chunk-GU6JHGME.cjs.map +0 -1
- package/bin/chunk-SAG2FKFE.js.map +0 -1
- package/dist/chunk-75ZPJI57.cjs +0 -9
- package/dist/chunk-MLKGABMK.js +0 -7
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-FD6LP4AO.js';
|
|
5
5
|
import TOML from '@ltd/j-toml';
|
|
6
6
|
import { Command } from 'commander';
|
|
7
7
|
import '@inquirer/checkbox';
|
|
@@ -2997,6 +2997,7 @@ var StormChangelogRenderer = class extends DefaultChangelogRenderer {
|
|
|
2997
2997
|
}
|
|
2998
2998
|
if (this.isVersionPlans) {
|
|
2999
2999
|
this.conventionalCommitsConfig = {
|
|
3000
|
+
useCommitScope: this.workspaceConfig?.variant === "monorepo",
|
|
3000
3001
|
types: {
|
|
3001
3002
|
feat: DEFAULT_CONVENTIONAL_COMMITS_CONFIG.types.feat,
|
|
3002
3003
|
fix: DEFAULT_CONVENTIONAL_COMMITS_CONFIG.types.fix
|
|
@@ -3153,6 +3154,7 @@ var StormChangelogRenderer = class extends DefaultChangelogRenderer {
|
|
|
3153
3154
|
|
|
3154
3155
|
// src/release/config.ts
|
|
3155
3156
|
var DEFAULT_CONVENTIONAL_COMMITS_CONFIG2 = {
|
|
3157
|
+
useCommitScope: true,
|
|
3156
3158
|
questions: DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
3157
3159
|
types: DEFAULT_COMMIT_TYPES
|
|
3158
3160
|
};
|