@storm-software/git-tools 2.119.11 → 2.121.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.
Files changed (57) hide show
  1. package/README.md +2 -1
  2. package/bin/{chunk-FEIWTHDN.cjs → chunk-7V324BCR.cjs} +347 -297
  3. package/bin/{chunk-VATYGW5F.js → chunk-XJZXOYRK.js} +346 -296
  4. package/bin/git.cjs +143 -99
  5. package/bin/git.js +73 -29
  6. package/bin/post-checkout.cjs +9 -9
  7. package/bin/post-checkout.js +1 -1
  8. package/bin/post-commit.cjs +9 -9
  9. package/bin/post-commit.js +1 -1
  10. package/bin/post-merge.cjs +9 -9
  11. package/bin/post-merge.js +1 -1
  12. package/bin/pre-commit.cjs +9 -9
  13. package/bin/pre-commit.js +1 -1
  14. package/bin/pre-install.cjs +9 -9
  15. package/bin/pre-install.js +1 -1
  16. package/bin/pre-push.cjs +13 -13
  17. package/bin/pre-push.js +1 -1
  18. package/bin/prepare.cjs +7 -7
  19. package/bin/prepare.js +1 -1
  20. package/bin/version-warning.cjs +5 -5
  21. package/bin/version-warning.js +1 -1
  22. package/dist/{chunk-C4NLID2V.js → chunk-25G45MG4.js} +1 -1
  23. package/dist/{chunk-LSRFGWF5.js → chunk-2IQTQBAX.js} +1 -1
  24. package/dist/chunk-2RKFQIWE.cjs +19 -0
  25. package/dist/{chunk-ZE542BCU.cjs → chunk-2SHAD3P5.cjs} +5 -2
  26. package/dist/{chunk-5XXXTVPU.js → chunk-GRCMQK4Q.js} +5 -2
  27. package/dist/{chunk-NWZD3QTO.cjs → chunk-RG47FAF4.cjs} +3 -3
  28. package/dist/commit/minimal.cjs +5 -5
  29. package/dist/commit/minimal.d.cts +1 -0
  30. package/dist/commit/minimal.d.ts +1 -0
  31. package/dist/commit/minimal.js +1 -1
  32. package/dist/commit/monorepo.cjs +3 -3
  33. package/dist/commit/monorepo.d.cts +1 -0
  34. package/dist/commit/monorepo.d.ts +1 -0
  35. package/dist/commit/monorepo.js +2 -2
  36. package/dist/commitlint/minimal.cjs +3 -12
  37. package/dist/commitlint/minimal.d.cts +1 -9
  38. package/dist/commitlint/minimal.d.ts +1 -9
  39. package/dist/commitlint/minimal.js +2 -11
  40. package/dist/commitlint/monorepo.cjs +3 -12
  41. package/dist/commitlint/monorepo.d.cts +1 -9
  42. package/dist/commitlint/monorepo.d.ts +1 -9
  43. package/dist/commitlint/monorepo.js +2 -11
  44. package/dist/index.cjs +4 -6
  45. package/dist/index.d.cts +2 -1
  46. package/dist/index.d.ts +2 -1
  47. package/dist/index.js +3 -5
  48. package/dist/release/config.cjs +3 -3
  49. package/dist/release/config.d.cts +4 -3
  50. package/dist/release/config.d.ts +4 -3
  51. package/dist/release/config.js +2 -2
  52. package/dist/types.cjs +2 -4
  53. package/dist/types.d.cts +4 -143
  54. package/dist/types.d.ts +4 -143
  55. package/dist/types.js +1 -3
  56. package/package.json +12 -5
  57. package/dist/chunk-KD6Y4AJS.cjs +0 -19
package/dist/types.d.cts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ProjectGraph, ProjectsConfigurations } from '@nx/devkit';
2
2
  import { Variant } from '@storm-software/config/types';
3
+ import { CommitEnumItemProps, CommitTypesEnum } from 'conventional-changelog-storm-software/types/commit-types';
3
4
  import { NxReleaseVersionConfiguration, NxReleaseChangelogConfiguration, NxReleaseGitConfiguration, NxReleaseConventionalCommitsConfiguration } from 'nx/src/config/nx-json';
4
5
 
5
6
  type DeepPartial<T> = T extends object ? {
@@ -10,146 +11,6 @@ interface CommitLintCLIOptions {
10
11
  message?: string;
11
12
  file?: string;
12
13
  }
13
- type CommitEnumItemProps = {
14
- description: string;
15
- title?: string;
16
- emoji?: string;
17
- hidden?: boolean;
18
- };
19
- type CommitTypeProps = CommitEnumItemProps & {
20
- semverBump: "none" | "patch" | "minor" | "major";
21
- changelog: {
22
- title: string;
23
- hidden: boolean;
24
- };
25
- };
26
- declare const COMMIT_TYPES: {
27
- readonly chore: {
28
- readonly description: "Other changes that don't modify src or test files";
29
- readonly title: "Chore";
30
- readonly emoji: "⚙️ ";
31
- readonly semverBump: "patch";
32
- readonly changelog: {
33
- readonly title: "Miscellaneous";
34
- readonly hidden: false;
35
- };
36
- };
37
- readonly fix: {
38
- readonly description: "A change that resolves an issue previously identified with the package";
39
- readonly title: "Bug Fix";
40
- readonly emoji: "🪲 ";
41
- readonly semverBump: "patch";
42
- readonly changelog: {
43
- readonly title: "Bug Fixes";
44
- readonly hidden: false;
45
- };
46
- };
47
- readonly feat: {
48
- readonly description: "A change that adds a new feature to the package";
49
- readonly title: "Feature";
50
- readonly emoji: "🔑 ";
51
- readonly semverBump: "minor";
52
- readonly changelog: {
53
- readonly title: "Features";
54
- readonly hidden: false;
55
- };
56
- };
57
- readonly ci: {
58
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
59
- readonly title: "Continuous Integration";
60
- readonly emoji: "🧰 ";
61
- readonly semverBump: "patch";
62
- readonly changelog: {
63
- readonly title: "Continuous Integration";
64
- readonly hidden: false;
65
- };
66
- };
67
- readonly refactor: {
68
- readonly description: "A code change that neither fixes a bug nor adds a feature";
69
- readonly title: "Code Refactoring";
70
- readonly emoji: "🧪 ";
71
- readonly semverBump: "patch";
72
- readonly changelog: {
73
- readonly title: "Source Code Improvements";
74
- readonly hidden: false;
75
- };
76
- };
77
- readonly style: {
78
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
79
- readonly title: "Style Improvements";
80
- readonly emoji: "💎 ";
81
- readonly semverBump: "patch";
82
- readonly changelog: {
83
- readonly title: "Style Improvements";
84
- readonly hidden: false;
85
- };
86
- };
87
- readonly perf: {
88
- readonly description: "A code change that improves performance";
89
- readonly title: "Performance Improvement";
90
- readonly emoji: "⏱️ ";
91
- readonly semverBump: "patch";
92
- readonly changelog: {
93
- readonly title: "Performance Improvements";
94
- readonly hidden: false;
95
- };
96
- };
97
- readonly docs: {
98
- readonly description: "A change that only includes documentation updates";
99
- readonly title: "Documentation";
100
- readonly emoji: "📜 ";
101
- readonly semverBump: "none";
102
- readonly changelog: {
103
- readonly title: "Documentation";
104
- readonly hidden: false;
105
- };
106
- };
107
- readonly test: {
108
- readonly description: "Adding missing tests or correcting existing tests";
109
- readonly title: "Testing";
110
- readonly emoji: "🚨 ";
111
- readonly semverBump: "none";
112
- readonly changelog: {
113
- readonly title: "Testing";
114
- readonly hidden: true;
115
- };
116
- };
117
- readonly deps: {
118
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
119
- readonly title: "Dependencies";
120
- readonly emoji: "📦 ";
121
- readonly hidden: true;
122
- readonly semverBump: "patch";
123
- readonly changelog: {
124
- readonly title: "Dependency Upgrades";
125
- readonly hidden: false;
126
- };
127
- };
128
- readonly build: {
129
- readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
130
- readonly title: "Build";
131
- readonly emoji: "🛠 ";
132
- readonly hidden: true;
133
- readonly semverBump: "none";
134
- readonly changelog: {
135
- readonly title: "Build";
136
- readonly hidden: true;
137
- };
138
- };
139
- readonly release: {
140
- readonly description: "Publishing a commit containing a newly released version";
141
- readonly title: "Publish Release";
142
- readonly emoji: "🚀 ";
143
- readonly hidden: true;
144
- readonly semverBump: "none";
145
- readonly changelog: {
146
- readonly title: "Publish Release";
147
- readonly hidden: true;
148
- };
149
- };
150
- };
151
- type DefaultCommitTypeKeys = keyof typeof COMMIT_TYPES;
152
- type CommitTypesEnum<TCommitTypes extends DefaultCommitTypeKeys = DefaultCommitTypeKeys> = Record<TCommitTypes, CommitTypeProps>;
153
14
  type CommitScopeProps = CommitEnumItemProps & {
154
15
  projectRoot: string;
155
16
  };
@@ -170,7 +31,7 @@ declare const DEFAULT_MINIMAL_COMMIT_QUESTIONS: {
170
31
  readonly type: "select";
171
32
  readonly title: "Commit Type";
172
33
  readonly description: "Select the commit type that best describes your changes";
173
- readonly enum: CommitTypesEnum<"build" | "docs" | "release" | "chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "test" | "deps">;
34
+ readonly enum: CommitTypesEnum;
174
35
  readonly defaultValue: "chore";
175
36
  readonly maxLength: 20;
176
37
  readonly minLength: 3;
@@ -222,7 +83,7 @@ declare const DEFAULT_MONOREPO_COMMIT_QUESTIONS: {
222
83
  readonly type: "select";
223
84
  readonly title: "Commit Type";
224
85
  readonly description: "Select the commit type that best describes your changes";
225
- readonly enum: CommitTypesEnum<"build" | "docs" | "release" | "chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "test" | "deps">;
86
+ readonly enum: CommitTypesEnum;
226
87
  readonly defaultValue: "chore";
227
88
  readonly maxLength: 20;
228
89
  readonly minLength: 3;
@@ -625,4 +486,4 @@ type NxReleaseRequiredGitConfig = Required<{
625
486
  tagArgs?: string | undefined;
626
487
  }>;
627
488
 
628
- export { COMMIT_TYPES, type CommitEnumItemProps, type CommitLintCLIOptions, type CommitLintOutcome, type CommitLintRuleOutcome, type CommitPromptMessagesEnum, type CommitQuestionProps, type CommitRulesEnum, type CommitScopeProps, type CommitScopesEnum, type CommitSettingsEnum, type CommitState, type CommitTypeProps, type CommitTypesEnum, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT, DEFAULT_MINIMAL_COMMIT_QUESTIONS, DEFAULT_MINIMAL_COMMIT_RULES, DEFAULT_MINIMAL_COMMIT_SETTINGS, DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT, DEFAULT_MONOREPO_COMMIT_QUESTIONS, DEFAULT_MONOREPO_COMMIT_RULES, DEFAULT_MONOREPO_COMMIT_SETTINGS, type DeepPartial, type DefaultCommitPromptMessagesKeys, type DefaultCommitRulesEnum, type DefaultCommitTypeKeys, type DefaultMinimalCommitQuestionKeys, type DefaultMinimalCommitRulesEnum, type DefaultMinimalResolvedCommitRulesEnum, type DefaultMonorepoCommitQuestionKeys, type DefaultMonorepoCommitRulesEnum, type DefaultMonorepoResolvedCommitRulesEnum, type MinimalCommitConfig, type MinimalCommitQuestionAnswers, type MinimalCommitQuestionEnum, type MinimalCommitResolvedConfig, type MinimalCommitState, type MonorepoCommitConfig, type MonorepoCommitQuestionAnswers, type MonorepoCommitQuestionEnum, type MonorepoCommitResolvedConfig, type MonorepoCommitState, type NxReleaseChangelogConfig, type NxReleaseConfig, type NxReleaseConventionalCommitsConfig, type NxReleaseGitConfig, type NxReleaseGroupConfig, type NxReleaseGroupsConfig, type NxReleaseProjectsConfig, type NxReleaseRequiredGitConfig, type NxReleaseVersionConfig, type ReadMeOptions, type ReleaseConfig, type ReleaseContext, type RuleConfigCondition, RuleConfigSeverity };
489
+ export { type CommitLintCLIOptions, type CommitLintOutcome, type CommitLintRuleOutcome, type CommitPromptMessagesEnum, type CommitQuestionProps, type CommitRulesEnum, type CommitScopeProps, type CommitScopesEnum, type CommitSettingsEnum, type CommitState, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT, DEFAULT_MINIMAL_COMMIT_QUESTIONS, DEFAULT_MINIMAL_COMMIT_RULES, DEFAULT_MINIMAL_COMMIT_SETTINGS, DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT, DEFAULT_MONOREPO_COMMIT_QUESTIONS, DEFAULT_MONOREPO_COMMIT_RULES, DEFAULT_MONOREPO_COMMIT_SETTINGS, type DeepPartial, type DefaultCommitPromptMessagesKeys, type DefaultCommitRulesEnum, type DefaultMinimalCommitQuestionKeys, type DefaultMinimalCommitRulesEnum, type DefaultMinimalResolvedCommitRulesEnum, type DefaultMonorepoCommitQuestionKeys, type DefaultMonorepoCommitRulesEnum, type DefaultMonorepoResolvedCommitRulesEnum, type MinimalCommitConfig, type MinimalCommitQuestionAnswers, type MinimalCommitQuestionEnum, type MinimalCommitResolvedConfig, type MinimalCommitState, type MonorepoCommitConfig, type MonorepoCommitQuestionAnswers, type MonorepoCommitQuestionEnum, type MonorepoCommitResolvedConfig, type MonorepoCommitState, type NxReleaseChangelogConfig, type NxReleaseConfig, type NxReleaseConventionalCommitsConfig, type NxReleaseGitConfig, type NxReleaseGroupConfig, type NxReleaseGroupsConfig, type NxReleaseProjectsConfig, type NxReleaseRequiredGitConfig, type NxReleaseVersionConfig, type ReadMeOptions, type ReleaseConfig, type ReleaseContext, type RuleConfigCondition, RuleConfigSeverity };
package/dist/types.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ProjectGraph, ProjectsConfigurations } from '@nx/devkit';
2
2
  import { Variant } from '@storm-software/config/types';
3
+ import { CommitEnumItemProps, CommitTypesEnum } from 'conventional-changelog-storm-software/types/commit-types';
3
4
  import { NxReleaseVersionConfiguration, NxReleaseChangelogConfiguration, NxReleaseGitConfiguration, NxReleaseConventionalCommitsConfiguration } from 'nx/src/config/nx-json';
4
5
 
5
6
  type DeepPartial<T> = T extends object ? {
@@ -10,146 +11,6 @@ interface CommitLintCLIOptions {
10
11
  message?: string;
11
12
  file?: string;
12
13
  }
13
- type CommitEnumItemProps = {
14
- description: string;
15
- title?: string;
16
- emoji?: string;
17
- hidden?: boolean;
18
- };
19
- type CommitTypeProps = CommitEnumItemProps & {
20
- semverBump: "none" | "patch" | "minor" | "major";
21
- changelog: {
22
- title: string;
23
- hidden: boolean;
24
- };
25
- };
26
- declare const COMMIT_TYPES: {
27
- readonly chore: {
28
- readonly description: "Other changes that don't modify src or test files";
29
- readonly title: "Chore";
30
- readonly emoji: "⚙️ ";
31
- readonly semverBump: "patch";
32
- readonly changelog: {
33
- readonly title: "Miscellaneous";
34
- readonly hidden: false;
35
- };
36
- };
37
- readonly fix: {
38
- readonly description: "A change that resolves an issue previously identified with the package";
39
- readonly title: "Bug Fix";
40
- readonly emoji: "🪲 ";
41
- readonly semverBump: "patch";
42
- readonly changelog: {
43
- readonly title: "Bug Fixes";
44
- readonly hidden: false;
45
- };
46
- };
47
- readonly feat: {
48
- readonly description: "A change that adds a new feature to the package";
49
- readonly title: "Feature";
50
- readonly emoji: "🔑 ";
51
- readonly semverBump: "minor";
52
- readonly changelog: {
53
- readonly title: "Features";
54
- readonly hidden: false;
55
- };
56
- };
57
- readonly ci: {
58
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
59
- readonly title: "Continuous Integration";
60
- readonly emoji: "🧰 ";
61
- readonly semverBump: "patch";
62
- readonly changelog: {
63
- readonly title: "Continuous Integration";
64
- readonly hidden: false;
65
- };
66
- };
67
- readonly refactor: {
68
- readonly description: "A code change that neither fixes a bug nor adds a feature";
69
- readonly title: "Code Refactoring";
70
- readonly emoji: "🧪 ";
71
- readonly semverBump: "patch";
72
- readonly changelog: {
73
- readonly title: "Source Code Improvements";
74
- readonly hidden: false;
75
- };
76
- };
77
- readonly style: {
78
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
79
- readonly title: "Style Improvements";
80
- readonly emoji: "💎 ";
81
- readonly semverBump: "patch";
82
- readonly changelog: {
83
- readonly title: "Style Improvements";
84
- readonly hidden: false;
85
- };
86
- };
87
- readonly perf: {
88
- readonly description: "A code change that improves performance";
89
- readonly title: "Performance Improvement";
90
- readonly emoji: "⏱️ ";
91
- readonly semverBump: "patch";
92
- readonly changelog: {
93
- readonly title: "Performance Improvements";
94
- readonly hidden: false;
95
- };
96
- };
97
- readonly docs: {
98
- readonly description: "A change that only includes documentation updates";
99
- readonly title: "Documentation";
100
- readonly emoji: "📜 ";
101
- readonly semverBump: "none";
102
- readonly changelog: {
103
- readonly title: "Documentation";
104
- readonly hidden: false;
105
- };
106
- };
107
- readonly test: {
108
- readonly description: "Adding missing tests or correcting existing tests";
109
- readonly title: "Testing";
110
- readonly emoji: "🚨 ";
111
- readonly semverBump: "none";
112
- readonly changelog: {
113
- readonly title: "Testing";
114
- readonly hidden: true;
115
- };
116
- };
117
- readonly deps: {
118
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
119
- readonly title: "Dependencies";
120
- readonly emoji: "📦 ";
121
- readonly hidden: true;
122
- readonly semverBump: "patch";
123
- readonly changelog: {
124
- readonly title: "Dependency Upgrades";
125
- readonly hidden: false;
126
- };
127
- };
128
- readonly build: {
129
- readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
130
- readonly title: "Build";
131
- readonly emoji: "🛠 ";
132
- readonly hidden: true;
133
- readonly semverBump: "none";
134
- readonly changelog: {
135
- readonly title: "Build";
136
- readonly hidden: true;
137
- };
138
- };
139
- readonly release: {
140
- readonly description: "Publishing a commit containing a newly released version";
141
- readonly title: "Publish Release";
142
- readonly emoji: "🚀 ";
143
- readonly hidden: true;
144
- readonly semverBump: "none";
145
- readonly changelog: {
146
- readonly title: "Publish Release";
147
- readonly hidden: true;
148
- };
149
- };
150
- };
151
- type DefaultCommitTypeKeys = keyof typeof COMMIT_TYPES;
152
- type CommitTypesEnum<TCommitTypes extends DefaultCommitTypeKeys = DefaultCommitTypeKeys> = Record<TCommitTypes, CommitTypeProps>;
153
14
  type CommitScopeProps = CommitEnumItemProps & {
154
15
  projectRoot: string;
155
16
  };
@@ -170,7 +31,7 @@ declare const DEFAULT_MINIMAL_COMMIT_QUESTIONS: {
170
31
  readonly type: "select";
171
32
  readonly title: "Commit Type";
172
33
  readonly description: "Select the commit type that best describes your changes";
173
- readonly enum: CommitTypesEnum<"build" | "docs" | "release" | "chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "test" | "deps">;
34
+ readonly enum: CommitTypesEnum;
174
35
  readonly defaultValue: "chore";
175
36
  readonly maxLength: 20;
176
37
  readonly minLength: 3;
@@ -222,7 +83,7 @@ declare const DEFAULT_MONOREPO_COMMIT_QUESTIONS: {
222
83
  readonly type: "select";
223
84
  readonly title: "Commit Type";
224
85
  readonly description: "Select the commit type that best describes your changes";
225
- readonly enum: CommitTypesEnum<"build" | "docs" | "release" | "chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "test" | "deps">;
86
+ readonly enum: CommitTypesEnum;
226
87
  readonly defaultValue: "chore";
227
88
  readonly maxLength: 20;
228
89
  readonly minLength: 3;
@@ -625,4 +486,4 @@ type NxReleaseRequiredGitConfig = Required<{
625
486
  tagArgs?: string | undefined;
626
487
  }>;
627
488
 
628
- export { COMMIT_TYPES, type CommitEnumItemProps, type CommitLintCLIOptions, type CommitLintOutcome, type CommitLintRuleOutcome, type CommitPromptMessagesEnum, type CommitQuestionProps, type CommitRulesEnum, type CommitScopeProps, type CommitScopesEnum, type CommitSettingsEnum, type CommitState, type CommitTypeProps, type CommitTypesEnum, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT, DEFAULT_MINIMAL_COMMIT_QUESTIONS, DEFAULT_MINIMAL_COMMIT_RULES, DEFAULT_MINIMAL_COMMIT_SETTINGS, DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT, DEFAULT_MONOREPO_COMMIT_QUESTIONS, DEFAULT_MONOREPO_COMMIT_RULES, DEFAULT_MONOREPO_COMMIT_SETTINGS, type DeepPartial, type DefaultCommitPromptMessagesKeys, type DefaultCommitRulesEnum, type DefaultCommitTypeKeys, type DefaultMinimalCommitQuestionKeys, type DefaultMinimalCommitRulesEnum, type DefaultMinimalResolvedCommitRulesEnum, type DefaultMonorepoCommitQuestionKeys, type DefaultMonorepoCommitRulesEnum, type DefaultMonorepoResolvedCommitRulesEnum, type MinimalCommitConfig, type MinimalCommitQuestionAnswers, type MinimalCommitQuestionEnum, type MinimalCommitResolvedConfig, type MinimalCommitState, type MonorepoCommitConfig, type MonorepoCommitQuestionAnswers, type MonorepoCommitQuestionEnum, type MonorepoCommitResolvedConfig, type MonorepoCommitState, type NxReleaseChangelogConfig, type NxReleaseConfig, type NxReleaseConventionalCommitsConfig, type NxReleaseGitConfig, type NxReleaseGroupConfig, type NxReleaseGroupsConfig, type NxReleaseProjectsConfig, type NxReleaseRequiredGitConfig, type NxReleaseVersionConfig, type ReadMeOptions, type ReleaseConfig, type ReleaseContext, type RuleConfigCondition, RuleConfigSeverity };
489
+ export { type CommitLintCLIOptions, type CommitLintOutcome, type CommitLintRuleOutcome, type CommitPromptMessagesEnum, type CommitQuestionProps, type CommitRulesEnum, type CommitScopeProps, type CommitScopesEnum, type CommitSettingsEnum, type CommitState, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT, DEFAULT_MINIMAL_COMMIT_QUESTIONS, DEFAULT_MINIMAL_COMMIT_RULES, DEFAULT_MINIMAL_COMMIT_SETTINGS, DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT, DEFAULT_MONOREPO_COMMIT_QUESTIONS, DEFAULT_MONOREPO_COMMIT_RULES, DEFAULT_MONOREPO_COMMIT_SETTINGS, type DeepPartial, type DefaultCommitPromptMessagesKeys, type DefaultCommitRulesEnum, type DefaultMinimalCommitQuestionKeys, type DefaultMinimalCommitRulesEnum, type DefaultMinimalResolvedCommitRulesEnum, type DefaultMonorepoCommitQuestionKeys, type DefaultMonorepoCommitRulesEnum, type DefaultMonorepoResolvedCommitRulesEnum, type MinimalCommitConfig, type MinimalCommitQuestionAnswers, type MinimalCommitQuestionEnum, type MinimalCommitResolvedConfig, type MinimalCommitState, type MonorepoCommitConfig, type MonorepoCommitQuestionAnswers, type MonorepoCommitQuestionEnum, type MonorepoCommitResolvedConfig, type MonorepoCommitState, type NxReleaseChangelogConfig, type NxReleaseConfig, type NxReleaseConventionalCommitsConfig, type NxReleaseGitConfig, type NxReleaseGroupConfig, type NxReleaseGroupsConfig, type NxReleaseProjectsConfig, type NxReleaseRequiredGitConfig, type NxReleaseVersionConfig, type ReadMeOptions, type ReleaseConfig, type ReleaseContext, type RuleConfigCondition, RuleConfigSeverity };
package/dist/types.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import {
2
- COMMIT_TYPES,
3
2
  DEFAULT_COMMIT_PROMPT_MESSAGES,
4
3
  DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
5
4
  DEFAULT_MINIMAL_COMMIT_QUESTIONS,
@@ -10,9 +9,8 @@ import {
10
9
  DEFAULT_MONOREPO_COMMIT_RULES,
11
10
  DEFAULT_MONOREPO_COMMIT_SETTINGS,
12
11
  RuleConfigSeverity
13
- } from "./chunk-5XXXTVPU.js";
12
+ } from "./chunk-GRCMQK4Q.js";
14
13
  export {
15
- COMMIT_TYPES,
16
14
  DEFAULT_COMMIT_PROMPT_MESSAGES,
17
15
  DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
18
16
  DEFAULT_MINIMAL_COMMIT_QUESTIONS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.119.11",
3
+ "version": "2.121.0",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {
@@ -172,15 +172,21 @@
172
172
  "lefthook",
173
173
  "lint-staged"
174
174
  ],
175
- "peerDependencies": { "zod": ">=4.0.0" },
175
+ "peerDependencies": {
176
+ "conventional-changelog-storm-software": "*",
177
+ "zod": ">=4.0.0"
178
+ },
179
+ "peerDependenciesMeta": {
180
+ "conventional-changelog-storm-software": { "optional": false }
181
+ },
176
182
  "dependencies": {
177
183
  "@commitlint/ensure": "^19.8.1",
178
184
  "@commitlint/rules": "^19.8.1",
179
185
  "@inquirer/prompts": "7.2.1",
180
186
  "@nx/devkit": "^21.4.1",
181
187
  "@nx/js": "^21.4.1",
182
- "@storm-software/config": "^1.130.7",
183
- "@storm-software/config-tools": "^1.183.11",
188
+ "@storm-software/config": "^1.131.0",
189
+ "@storm-software/config-tools": "^1.185.0",
184
190
  "@textlint/ast-node-types": "14.4.2",
185
191
  "@textlint/markdown-to-ast": "14.4.2",
186
192
  "anchor-markdown-header": "0.7.0",
@@ -188,6 +194,7 @@
188
194
  "axios": "1.8.2",
189
195
  "chalk": "^4.1.2",
190
196
  "chalk-template": "1.1.0",
197
+ "conventional-changelog-storm-software": "^0.1.0",
191
198
  "htmlparser2": "10.0.0",
192
199
  "jsonc-parser": "3.2.1",
193
200
  "nx": "^21.4.1",
@@ -209,5 +216,5 @@
209
216
  "tsup": "8.4.0"
210
217
  },
211
218
  "publishConfig": { "access": "public" },
212
- "gitHead": "e3a65d569028bf9ea0883e17613944a9edae541d"
219
+ "gitHead": "026eb81c70b21b9e4defb0b5c4dc078bbdaa7ca9"
213
220
  }
@@ -1,19 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
-
5
-
6
- var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
7
-
8
- // src/commit/config/monorepo.ts
9
- var config = {
10
- settings: _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_SETTINGS,
11
- messages: _chunkZE542BCUcjs.DEFAULT_COMMIT_PROMPT_MESSAGES,
12
- questions: _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS,
13
- types: _chunkZE542BCUcjs.COMMIT_TYPES
14
- };
15
- var monorepo_default = config;
16
-
17
-
18
-
19
- exports.monorepo_default = monorepo_default;