@storm-software/git-tools 2.115.16 → 2.116.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 -1
- package/bin/{chunk-XH6F7XTV.cjs → chunk-LD4V463J.cjs} +17 -0
- package/bin/{chunk-7TA5K5AW.js → chunk-VATYGW5F.js} +12 -0
- package/bin/git.cjs +402 -264
- package/bin/git.js +354 -217
- 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-A4HFPO7F.js → chunk-5XXXTVPU.js} +87 -17
- package/dist/chunk-C4NLID2V.js +19 -0
- package/dist/chunk-KD6Y4AJS.cjs +19 -0
- package/dist/{chunk-R3RXM6UC.js → chunk-LSRFGWF5.js} +3 -3
- package/dist/{chunk-PGN2XOUF.cjs → chunk-NWZD3QTO.cjs} +3 -3
- package/dist/{chunk-MDOOV3KF.cjs → chunk-ZE542BCU.cjs} +84 -14
- package/dist/commit/minimal.cjs +18 -0
- package/dist/commit/minimal.d.cts +8 -0
- package/dist/commit/minimal.d.ts +8 -0
- package/dist/commit/minimal.js +18 -0
- package/dist/commit/monorepo.cjs +7 -0
- package/dist/commit/monorepo.d.cts +8 -0
- package/dist/commit/monorepo.d.ts +8 -0
- package/dist/commit/monorepo.js +7 -0
- package/dist/commitlint/minimal.cjs +22 -0
- package/dist/commitlint/{config.d.ts → minimal.d.cts} +6 -6
- package/dist/commitlint/{config.d.cts → minimal.d.ts} +6 -6
- package/dist/commitlint/minimal.js +22 -0
- package/dist/commitlint/monorepo.cjs +22 -0
- package/dist/commitlint/monorepo.d.cts +21 -0
- package/dist/commitlint/monorepo.d.ts +21 -0
- package/dist/commitlint/monorepo.js +22 -0
- package/dist/index.cjs +11 -4
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +19 -12
- package/dist/release/config.cjs +3 -3
- package/dist/release/config.d.cts +3 -2
- package/dist/release/config.d.ts +3 -2
- package/dist/release/config.js +2 -2
- package/dist/types.cjs +12 -2
- package/dist/types.d.cts +153 -16
- package/dist/types.d.ts +153 -16
- package/dist/types.js +17 -7
- package/package.json +4 -46
- package/dist/chunk-OZ5QCRGG.js +0 -18
- package/dist/chunk-SXO5R5AG.cjs +0 -18
- package/dist/commit/config.cjs +0 -7
- package/dist/commit/config.d.cts +0 -7
- package/dist/commit/config.d.ts +0 -7
- package/dist/commit/config.js +0 -7
- package/dist/commitlint/config.cjs +0 -46
- package/dist/commitlint/config.js +0 -46
|
@@ -128,7 +128,7 @@ var COMMIT_TYPES = {
|
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
};
|
|
131
|
-
var
|
|
131
|
+
var DEFAULT_MINIMAL_COMMIT_QUESTIONS = {
|
|
132
132
|
type: {
|
|
133
133
|
type: "select",
|
|
134
134
|
title: "Commit Type",
|
|
@@ -143,15 +143,6 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
143
143
|
maxLength: 20,
|
|
144
144
|
minLength: 3
|
|
145
145
|
},
|
|
146
|
-
scope: {
|
|
147
|
-
type: "select",
|
|
148
|
-
title: "Commit Scope",
|
|
149
|
-
description: "Select the monorepo project that is primarily impacted by this change",
|
|
150
|
-
enum: {},
|
|
151
|
-
defaultValue: "monorepo",
|
|
152
|
-
maxLength: 50,
|
|
153
|
-
minLength: 1
|
|
154
|
-
},
|
|
155
146
|
subject: {
|
|
156
147
|
type: "input",
|
|
157
148
|
title: "Commit Subject",
|
|
@@ -194,6 +185,24 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
194
185
|
minLength: 3
|
|
195
186
|
}
|
|
196
187
|
};
|
|
188
|
+
var DEFAULT_MONOREPO_COMMIT_QUESTIONS = {
|
|
189
|
+
type: DEFAULT_MINIMAL_COMMIT_QUESTIONS.type,
|
|
190
|
+
scope: {
|
|
191
|
+
type: "select",
|
|
192
|
+
title: "Commit Scope",
|
|
193
|
+
description: "Select the project that's the most impacted by this change",
|
|
194
|
+
enum: {},
|
|
195
|
+
defaultValue: "monorepo",
|
|
196
|
+
maxLength: 50,
|
|
197
|
+
minLength: 1
|
|
198
|
+
},
|
|
199
|
+
subject: DEFAULT_MINIMAL_COMMIT_QUESTIONS.subject,
|
|
200
|
+
body: DEFAULT_MINIMAL_COMMIT_QUESTIONS.body,
|
|
201
|
+
isBreaking: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isBreaking,
|
|
202
|
+
breakingBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.breakingBody,
|
|
203
|
+
isIssueAffected: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isIssueAffected,
|
|
204
|
+
issuesBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.issuesBody
|
|
205
|
+
};
|
|
197
206
|
var DEFAULT_COMMIT_PROMPT_MESSAGES = {
|
|
198
207
|
skip: "press enter to skip",
|
|
199
208
|
max: "must be %d chars at most",
|
|
@@ -203,13 +212,21 @@ var DEFAULT_COMMIT_PROMPT_MESSAGES = {
|
|
|
203
212
|
lowerLimitWarning: "%s is %d characters less than the lower limit",
|
|
204
213
|
closedIssueMessage: "Closes: "
|
|
205
214
|
};
|
|
206
|
-
var
|
|
207
|
-
var
|
|
215
|
+
var DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = "{type}: {emoji}{subject}";
|
|
216
|
+
var DEFAULT_MINIMAL_COMMIT_SETTINGS = {
|
|
217
|
+
enableMultipleScopes: false,
|
|
218
|
+
disableEmoji: true,
|
|
219
|
+
breakingChangePrefix: "\u{1F4A3} ",
|
|
220
|
+
closedIssuePrefix: "\u2705 ",
|
|
221
|
+
format: DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT
|
|
222
|
+
};
|
|
223
|
+
var DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = "{type}({scope}): {emoji}{subject}";
|
|
224
|
+
var DEFAULT_MONOREPO_COMMIT_SETTINGS = {
|
|
208
225
|
enableMultipleScopes: false,
|
|
209
226
|
disableEmoji: true,
|
|
210
227
|
breakingChangePrefix: "\u{1F4A3} ",
|
|
211
228
|
closedIssuePrefix: "\u2705 ",
|
|
212
|
-
format:
|
|
229
|
+
format: DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT
|
|
213
230
|
};
|
|
214
231
|
var RuleConfigSeverity = /* @__PURE__ */ ((RuleConfigSeverity2) => {
|
|
215
232
|
RuleConfigSeverity2[RuleConfigSeverity2["Disabled"] = 0] = "Disabled";
|
|
@@ -217,6 +234,59 @@ var RuleConfigSeverity = /* @__PURE__ */ ((RuleConfigSeverity2) => {
|
|
|
217
234
|
RuleConfigSeverity2[RuleConfigSeverity2["Error"] = 2] = "Error";
|
|
218
235
|
return RuleConfigSeverity2;
|
|
219
236
|
})(RuleConfigSeverity || {});
|
|
237
|
+
var DEFAULT_MINIMAL_COMMIT_RULES = {
|
|
238
|
+
"body-leading-blank": [1 /* Warning */, "always"],
|
|
239
|
+
"body-max-length": [2 /* Error */, "always", 600],
|
|
240
|
+
"footer-leading-blank": [1 /* Warning */, "always"],
|
|
241
|
+
"footer-max-line-length": [2 /* Error */, "always", 150],
|
|
242
|
+
"header-max-length": [2 /* Error */, "always", 150],
|
|
243
|
+
"header-trim": [2 /* Error */, "always"],
|
|
244
|
+
"subject-case": [2 /* Error */, "always", ["sentence-case"]],
|
|
245
|
+
"subject-empty": [2 /* Error */, "never"],
|
|
246
|
+
"subject-full-stop": [2 /* Error */, "never", "."],
|
|
247
|
+
"subject-max-length": [2 /* Error */, "always", 150],
|
|
248
|
+
"subject-min-length": [2 /* Error */, "always", 3],
|
|
249
|
+
"type-case": [2 /* Error */, "always", "kebab-case"],
|
|
250
|
+
"type-empty": [2 /* Error */, "never"],
|
|
251
|
+
"type-enum": [
|
|
252
|
+
2 /* Error */,
|
|
253
|
+
"always",
|
|
254
|
+
Object.keys(COMMIT_TYPES)
|
|
255
|
+
],
|
|
256
|
+
"type-max-length": [2 /* Error */, "always", 20],
|
|
257
|
+
"type-min-length": [2 /* Error */, "always", 3],
|
|
258
|
+
"scope-case": 0 /* Disabled */,
|
|
259
|
+
"scope-empty": 0 /* Disabled */
|
|
260
|
+
};
|
|
261
|
+
var DEFAULT_MONOREPO_COMMIT_RULES = {
|
|
262
|
+
"body-leading-blank": [1 /* Warning */, "always"],
|
|
263
|
+
"body-max-length": [2 /* Error */, "always", 600],
|
|
264
|
+
"footer-leading-blank": [1 /* Warning */, "always"],
|
|
265
|
+
"footer-max-line-length": [2 /* Error */, "always", 150],
|
|
266
|
+
"header-max-length": [2 /* Error */, "always", 150],
|
|
267
|
+
"header-trim": [2 /* Error */, "always"],
|
|
268
|
+
"subject-case": [2 /* Error */, "always", ["sentence-case"]],
|
|
269
|
+
"subject-empty": [2 /* Error */, "never"],
|
|
270
|
+
"subject-full-stop": [2 /* Error */, "never", "."],
|
|
271
|
+
"subject-max-length": [2 /* Error */, "always", 150],
|
|
272
|
+
"subject-min-length": [2 /* Error */, "always", 3],
|
|
273
|
+
"type-case": [2 /* Error */, "always", "kebab-case"],
|
|
274
|
+
"type-empty": [2 /* Error */, "never"],
|
|
275
|
+
"type-enum": [
|
|
276
|
+
2 /* Error */,
|
|
277
|
+
"always",
|
|
278
|
+
Object.keys(COMMIT_TYPES)
|
|
279
|
+
],
|
|
280
|
+
"type-max-length": [2 /* Error */, "always", 20],
|
|
281
|
+
"type-min-length": [2 /* Error */, "always", 3],
|
|
282
|
+
"scope-case": [2 /* Error */, "always", ["kebab-case"]],
|
|
283
|
+
"scope-empty": [2 /* Error */, "never"]
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
220
290
|
|
|
221
291
|
|
|
222
292
|
|
|
@@ -225,4 +295,4 @@ var RuleConfigSeverity = /* @__PURE__ */ ((RuleConfigSeverity2) => {
|
|
|
225
295
|
|
|
226
296
|
|
|
227
297
|
|
|
228
|
-
exports.COMMIT_TYPES = COMMIT_TYPES; exports.
|
|
298
|
+
exports.COMMIT_TYPES = COMMIT_TYPES; exports.DEFAULT_MINIMAL_COMMIT_QUESTIONS = DEFAULT_MINIMAL_COMMIT_QUESTIONS; exports.DEFAULT_MONOREPO_COMMIT_QUESTIONS = DEFAULT_MONOREPO_COMMIT_QUESTIONS; exports.DEFAULT_COMMIT_PROMPT_MESSAGES = DEFAULT_COMMIT_PROMPT_MESSAGES; exports.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MINIMAL_COMMIT_SETTINGS = DEFAULT_MINIMAL_COMMIT_SETTINGS; exports.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MONOREPO_COMMIT_SETTINGS = DEFAULT_MONOREPO_COMMIT_SETTINGS; exports.RuleConfigSeverity = RuleConfigSeverity; exports.DEFAULT_MINIMAL_COMMIT_RULES = DEFAULT_MINIMAL_COMMIT_RULES; exports.DEFAULT_MONOREPO_COMMIT_RULES = DEFAULT_MONOREPO_COMMIT_RULES;
|
|
@@ -0,0 +1,18 @@
|
|
|
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/minimal.ts
|
|
9
|
+
var config = {
|
|
10
|
+
settings: _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_SETTINGS,
|
|
11
|
+
messages: _chunkZE542BCUcjs.DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
12
|
+
questions: _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
13
|
+
types: _chunkZE542BCUcjs.COMMIT_TYPES
|
|
14
|
+
};
|
|
15
|
+
var minimal_default = config;
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
exports.default = minimal_default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {
|
|
2
|
+
COMMIT_TYPES,
|
|
3
|
+
DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
4
|
+
DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
5
|
+
DEFAULT_MINIMAL_COMMIT_SETTINGS
|
|
6
|
+
} from "../../chunk-5XXXTVPU.js";
|
|
7
|
+
|
|
8
|
+
// src/commit/config/minimal.ts
|
|
9
|
+
var config = {
|
|
10
|
+
settings: DEFAULT_MINIMAL_COMMIT_SETTINGS,
|
|
11
|
+
messages: DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
12
|
+
questions: DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
13
|
+
types: COMMIT_TYPES
|
|
14
|
+
};
|
|
15
|
+
var minimal_default = config;
|
|
16
|
+
export {
|
|
17
|
+
minimal_default as default
|
|
18
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkZE542BCUcjs = require('../../chunk-ZE542BCU.cjs');
|
|
4
|
+
|
|
5
|
+
// src/commitlint/config/minimal.ts
|
|
6
|
+
var config = {
|
|
7
|
+
rules: _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/minimal",
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: /^(\w*): (.*)$/,
|
|
11
|
+
breakingHeaderPattern: /^(\w*): (.*)$/,
|
|
12
|
+
headerCorrespondence: ["type", "subject"],
|
|
13
|
+
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
|
|
14
|
+
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w*)\./i,
|
|
15
|
+
revertCorrespondence: ["header", "hash"],
|
|
16
|
+
issuePrefixes: ["#"]
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
var minimal_default = config;
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
exports.default = minimal_default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DefaultMinimalCommitRulesEnum } from '../../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
3
4
|
import 'nx/src/config/nx-json';
|
|
4
5
|
|
|
5
|
-
declare const
|
|
6
|
-
|
|
7
|
-
rules: DefaultCommitRulesEnum;
|
|
6
|
+
declare const config: {
|
|
7
|
+
rules: DefaultMinimalCommitRulesEnum;
|
|
8
8
|
helpUrl: string;
|
|
9
9
|
parserOpts: {
|
|
10
10
|
headerPattern: RegExp;
|
|
@@ -16,6 +16,6 @@ declare const DEFAULT_COMMITLINT_CONFIG: {
|
|
|
16
16
|
issuePrefixes: string[];
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
type
|
|
19
|
+
type MinimalCommitlintConfig = typeof config;
|
|
20
20
|
|
|
21
|
-
export { type
|
|
21
|
+
export { type MinimalCommitlintConfig, config as default };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DefaultMinimalCommitRulesEnum } from '../../types.js';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
3
4
|
import 'nx/src/config/nx-json';
|
|
4
5
|
|
|
5
|
-
declare const
|
|
6
|
-
|
|
7
|
-
rules: DefaultCommitRulesEnum;
|
|
6
|
+
declare const config: {
|
|
7
|
+
rules: DefaultMinimalCommitRulesEnum;
|
|
8
8
|
helpUrl: string;
|
|
9
9
|
parserOpts: {
|
|
10
10
|
headerPattern: RegExp;
|
|
@@ -16,6 +16,6 @@ declare const DEFAULT_COMMITLINT_CONFIG: {
|
|
|
16
16
|
issuePrefixes: string[];
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
type
|
|
19
|
+
type MinimalCommitlintConfig = typeof config;
|
|
20
20
|
|
|
21
|
-
export { type
|
|
21
|
+
export { type MinimalCommitlintConfig, config as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_MINIMAL_COMMIT_RULES
|
|
3
|
+
} from "../../chunk-5XXXTVPU.js";
|
|
4
|
+
|
|
5
|
+
// src/commitlint/config/minimal.ts
|
|
6
|
+
var config = {
|
|
7
|
+
rules: DEFAULT_MINIMAL_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/minimal",
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: /^(\w*): (.*)$/,
|
|
11
|
+
breakingHeaderPattern: /^(\w*): (.*)$/,
|
|
12
|
+
headerCorrespondence: ["type", "subject"],
|
|
13
|
+
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
|
|
14
|
+
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w*)\./i,
|
|
15
|
+
revertCorrespondence: ["header", "hash"],
|
|
16
|
+
issuePrefixes: ["#"]
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
var minimal_default = config;
|
|
20
|
+
export {
|
|
21
|
+
minimal_default as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkZE542BCUcjs = require('../../chunk-ZE542BCU.cjs');
|
|
4
|
+
|
|
5
|
+
// src/commitlint/config/monorepo.ts
|
|
6
|
+
var config = {
|
|
7
|
+
rules: _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/monorepo",
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: /^(\w*)(?:\((.*)\))!?: (.*)$/,
|
|
11
|
+
breakingHeaderPattern: /^(\w*)(?:\((.*)\))!: (.*)$/,
|
|
12
|
+
headerCorrespondence: ["type", "scope", "subject"],
|
|
13
|
+
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
|
|
14
|
+
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w*)\./i,
|
|
15
|
+
revertCorrespondence: ["header", "hash"],
|
|
16
|
+
issuePrefixes: ["#"]
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
var monorepo_default = config;
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
exports.default = monorepo_default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DefaultMonorepoCommitRulesEnum } from '../../types.cjs';
|
|
2
|
+
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
4
|
+
import 'nx/src/config/nx-json';
|
|
5
|
+
|
|
6
|
+
declare const config: {
|
|
7
|
+
rules: DefaultMonorepoCommitRulesEnum;
|
|
8
|
+
helpUrl: string;
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: RegExp;
|
|
11
|
+
breakingHeaderPattern: RegExp;
|
|
12
|
+
headerCorrespondence: string[];
|
|
13
|
+
noteKeywords: string[];
|
|
14
|
+
revertPattern: RegExp;
|
|
15
|
+
revertCorrespondence: string[];
|
|
16
|
+
issuePrefixes: string[];
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type MonorepoCommitlintConfig = typeof config;
|
|
20
|
+
|
|
21
|
+
export { type MonorepoCommitlintConfig, config as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DefaultMonorepoCommitRulesEnum } from '../../types.js';
|
|
2
|
+
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
4
|
+
import 'nx/src/config/nx-json';
|
|
5
|
+
|
|
6
|
+
declare const config: {
|
|
7
|
+
rules: DefaultMonorepoCommitRulesEnum;
|
|
8
|
+
helpUrl: string;
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: RegExp;
|
|
11
|
+
breakingHeaderPattern: RegExp;
|
|
12
|
+
headerCorrespondence: string[];
|
|
13
|
+
noteKeywords: string[];
|
|
14
|
+
revertPattern: RegExp;
|
|
15
|
+
revertCorrespondence: string[];
|
|
16
|
+
issuePrefixes: string[];
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type MonorepoCommitlintConfig = typeof config;
|
|
20
|
+
|
|
21
|
+
export { type MonorepoCommitlintConfig, config as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_MONOREPO_COMMIT_RULES
|
|
3
|
+
} from "../../chunk-5XXXTVPU.js";
|
|
4
|
+
|
|
5
|
+
// src/commitlint/config/monorepo.ts
|
|
6
|
+
var config = {
|
|
7
|
+
rules: DEFAULT_MONOREPO_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/monorepo",
|
|
9
|
+
parserOpts: {
|
|
10
|
+
headerPattern: /^(\w*)(?:\((.*)\))!?: (.*)$/,
|
|
11
|
+
breakingHeaderPattern: /^(\w*)(?:\((.*)\))!: (.*)$/,
|
|
12
|
+
headerCorrespondence: ["type", "scope", "subject"],
|
|
13
|
+
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
|
|
14
|
+
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w*)\./i,
|
|
15
|
+
revertCorrespondence: ["header", "hash"],
|
|
16
|
+
issuePrefixes: ["#"]
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
var monorepo_default = config;
|
|
20
|
+
export {
|
|
21
|
+
monorepo_default as default
|
|
22
|
+
};
|
package/dist/index.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var _chunkSXO5R5AGcjs = require('./chunk-SXO5R5AG.cjs');
|
|
4
3
|
|
|
5
4
|
|
|
5
|
+
var _chunkNWZD3QTOcjs = require('./chunk-NWZD3QTO.cjs');
|
|
6
|
+
require('./chunk-KD6Y4AJS.cjs');
|
|
6
7
|
|
|
7
8
|
|
|
8
|
-
var _chunkPGN2XOUFcjs = require('./chunk-PGN2XOUF.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -13,10 +13,10 @@ var _chunkPGN2XOUFcjs = require('./chunk-PGN2XOUF.cjs');
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var _chunkMDOOV3KFcjs = require('./chunk-MDOOV3KF.cjs');
|
|
17
16
|
|
|
18
17
|
|
|
19
18
|
|
|
19
|
+
var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
@@ -25,4 +25,11 @@ var _chunkMDOOV3KFcjs = require('./chunk-MDOOV3KF.cjs');
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
exports.COMMIT_TYPES = _chunkZE542BCUcjs.COMMIT_TYPES; exports.DEFAULT_COMMIT_PROMPT_MESSAGES = _chunkZE542BCUcjs.DEFAULT_COMMIT_PROMPT_MESSAGES; exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_CONVENTIONAL_COMMITS_CONFIG; exports.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MINIMAL_COMMIT_QUESTIONS = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS; exports.DEFAULT_MINIMAL_COMMIT_RULES = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_RULES; exports.DEFAULT_MINIMAL_COMMIT_SETTINGS = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_SETTINGS; exports.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MONOREPO_COMMIT_QUESTIONS = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS; exports.DEFAULT_MONOREPO_COMMIT_RULES = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_RULES; exports.DEFAULT_MONOREPO_COMMIT_SETTINGS = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_SETTINGS; exports.DEFAULT_RELEASE_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_RELEASE_CONFIG; exports.DEFAULT_RELEASE_GROUP_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_RELEASE_GROUP_CONFIG; exports.RuleConfigSeverity = _chunkZE542BCUcjs.RuleConfigSeverity;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { COMMIT_TYPES, CommitEnumItemProps, CommitLintCLIOptions, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionProps, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, CommitState, CommitTypeProps, 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, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitRulesEnum, DefaultCommitTypeKeys, DefaultMinimalCommitQuestionKeys, DefaultMinimalCommitRulesEnum, DefaultMinimalResolvedCommitRulesEnum, DefaultMonorepoCommitQuestionKeys, DefaultMonorepoCommitRulesEnum, DefaultMonorepoResolvedCommitRulesEnum, MinimalCommitConfig, MinimalCommitQuestionAnswers, MinimalCommitQuestionEnum, MinimalCommitResolvedConfig, MinimalCommitState, MonorepoCommitConfig, MonorepoCommitQuestionAnswers, MonorepoCommitQuestionEnum, MonorepoCommitResolvedConfig, MonorepoCommitState, NxReleaseChangelogConfig, NxReleaseConfig, NxReleaseConventionalCommitsConfig, NxReleaseGitConfig, NxReleaseGroupConfig, NxReleaseGroupsConfig, NxReleaseProjectsConfig, NxReleaseRequiredGitConfig, NxReleaseVersionConfig, ReadMeOptions, ReleaseConfig, ReleaseContext, RuleConfigCondition, RuleConfigSeverity } from './types.cjs';
|
|
2
2
|
export { DEFAULT_CONVENTIONAL_COMMITS_CONFIG, DEFAULT_RELEASE_CONFIG, DEFAULT_RELEASE_GROUP_CONFIG } from './release/config.cjs';
|
|
3
|
-
export { COMMIT_TYPES, CommitConfig, CommitEnumItemProps, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionAnswers, CommitQuestionEnum, CommitQuestionProps, CommitResolvedConfig, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, CommitState, CommitTypeProps, CommitTypesEnum, DEFAULT_COMMIT_MESSAGE_FORMAT, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_COMMIT_QUESTIONS, DEFAULT_COMMIT_SETTINGS, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitQuestionKeys, DefaultCommitRulesEnum, DefaultCommitTypeKeys, DefaultResolvedCommitRulesEnum, NxReleaseChangelogConfig, NxReleaseConfig, NxReleaseConventionalCommitsConfig, NxReleaseGitConfig, NxReleaseGroupConfig, NxReleaseGroupsConfig, NxReleaseProjectsConfig, NxReleaseRequiredGitConfig, NxReleaseVersionConfig, ReadMeOptions, ReleaseConfig, ReleaseContext, RuleConfigCondition, RuleConfigSeverity } from './types.cjs';
|
|
4
3
|
import '@nx/devkit';
|
|
4
|
+
import '@storm-software/config/types';
|
|
5
5
|
import 'nx/src/config/nx-json';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { COMMIT_TYPES, CommitEnumItemProps, CommitLintCLIOptions, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionProps, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, CommitState, CommitTypeProps, 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, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitRulesEnum, DefaultCommitTypeKeys, DefaultMinimalCommitQuestionKeys, DefaultMinimalCommitRulesEnum, DefaultMinimalResolvedCommitRulesEnum, DefaultMonorepoCommitQuestionKeys, DefaultMonorepoCommitRulesEnum, DefaultMonorepoResolvedCommitRulesEnum, MinimalCommitConfig, MinimalCommitQuestionAnswers, MinimalCommitQuestionEnum, MinimalCommitResolvedConfig, MinimalCommitState, MonorepoCommitConfig, MonorepoCommitQuestionAnswers, MonorepoCommitQuestionEnum, MonorepoCommitResolvedConfig, MonorepoCommitState, NxReleaseChangelogConfig, NxReleaseConfig, NxReleaseConventionalCommitsConfig, NxReleaseGitConfig, NxReleaseGroupConfig, NxReleaseGroupsConfig, NxReleaseProjectsConfig, NxReleaseRequiredGitConfig, NxReleaseVersionConfig, ReadMeOptions, ReleaseConfig, ReleaseContext, RuleConfigCondition, RuleConfigSeverity } from './types.js';
|
|
2
2
|
export { DEFAULT_CONVENTIONAL_COMMITS_CONFIG, DEFAULT_RELEASE_CONFIG, DEFAULT_RELEASE_GROUP_CONFIG } from './release/config.js';
|
|
3
|
-
export { COMMIT_TYPES, CommitConfig, CommitEnumItemProps, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionAnswers, CommitQuestionEnum, CommitQuestionProps, CommitResolvedConfig, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, CommitState, CommitTypeProps, CommitTypesEnum, DEFAULT_COMMIT_MESSAGE_FORMAT, DEFAULT_COMMIT_PROMPT_MESSAGES, DEFAULT_COMMIT_QUESTIONS, DEFAULT_COMMIT_SETTINGS, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitQuestionKeys, DefaultCommitRulesEnum, DefaultCommitTypeKeys, DefaultResolvedCommitRulesEnum, NxReleaseChangelogConfig, NxReleaseConfig, NxReleaseConventionalCommitsConfig, NxReleaseGitConfig, NxReleaseGroupConfig, NxReleaseGroupsConfig, NxReleaseProjectsConfig, NxReleaseRequiredGitConfig, NxReleaseVersionConfig, ReadMeOptions, ReleaseConfig, ReleaseContext, RuleConfigCondition, RuleConfigSeverity } from './types.js';
|
|
4
3
|
import '@nx/devkit';
|
|
4
|
+
import '@storm-software/config/types';
|
|
5
5
|
import 'nx/src/config/nx-json';
|
package/dist/index.js
CHANGED
|
@@ -1,27 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
DEFAULT_COMMIT_CONFIG
|
|
3
|
-
} from "./chunk-OZ5QCRGG.js";
|
|
4
1
|
import {
|
|
5
2
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
6
3
|
DEFAULT_RELEASE_CONFIG,
|
|
7
4
|
DEFAULT_RELEASE_GROUP_CONFIG
|
|
8
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-LSRFGWF5.js";
|
|
6
|
+
import "./chunk-C4NLID2V.js";
|
|
9
7
|
import {
|
|
10
8
|
COMMIT_TYPES,
|
|
11
|
-
DEFAULT_COMMIT_MESSAGE_FORMAT,
|
|
12
9
|
DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
|
|
11
|
+
DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
12
|
+
DEFAULT_MINIMAL_COMMIT_RULES,
|
|
13
|
+
DEFAULT_MINIMAL_COMMIT_SETTINGS,
|
|
14
|
+
DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT,
|
|
15
|
+
DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
16
|
+
DEFAULT_MONOREPO_COMMIT_RULES,
|
|
17
|
+
DEFAULT_MONOREPO_COMMIT_SETTINGS,
|
|
15
18
|
RuleConfigSeverity
|
|
16
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-5XXXTVPU.js";
|
|
17
20
|
export {
|
|
18
21
|
COMMIT_TYPES,
|
|
19
|
-
DEFAULT_COMMIT_CONFIG,
|
|
20
|
-
DEFAULT_COMMIT_MESSAGE_FORMAT,
|
|
21
22
|
DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
22
|
-
DEFAULT_COMMIT_QUESTIONS,
|
|
23
|
-
DEFAULT_COMMIT_SETTINGS,
|
|
24
23
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
24
|
+
DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
|
|
25
|
+
DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
26
|
+
DEFAULT_MINIMAL_COMMIT_RULES,
|
|
27
|
+
DEFAULT_MINIMAL_COMMIT_SETTINGS,
|
|
28
|
+
DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT,
|
|
29
|
+
DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
30
|
+
DEFAULT_MONOREPO_COMMIT_RULES,
|
|
31
|
+
DEFAULT_MONOREPO_COMMIT_SETTINGS,
|
|
25
32
|
DEFAULT_RELEASE_CONFIG,
|
|
26
33
|
DEFAULT_RELEASE_GROUP_CONFIG,
|
|
27
34
|
RuleConfigSeverity
|
package/dist/release/config.cjs
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var _chunkNWZD3QTOcjs = require('../chunk-NWZD3QTO.cjs');
|
|
6
|
+
require('../chunk-ZE542BCU.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG =
|
|
11
|
+
exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_CONVENTIONAL_COMMITS_CONFIG; exports.DEFAULT_RELEASE_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_RELEASE_CONFIG; exports.DEFAULT_RELEASE_GROUP_CONFIG = _chunkNWZD3QTOcjs.DEFAULT_RELEASE_GROUP_CONFIG;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CommitTypesEnum, CommitScopesEnum } from '../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
3
4
|
import 'nx/src/config/nx-json';
|
|
4
5
|
|
|
5
6
|
declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
@@ -16,7 +17,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
|
16
17
|
readonly scope: {
|
|
17
18
|
readonly type: "select";
|
|
18
19
|
readonly title: "Commit Scope";
|
|
19
|
-
readonly description: "Select the
|
|
20
|
+
readonly description: "Select the project that's the most impacted by this change";
|
|
20
21
|
readonly enum: CommitScopesEnum;
|
|
21
22
|
readonly defaultValue: "monorepo";
|
|
22
23
|
readonly maxLength: 50;
|
|
@@ -233,7 +234,7 @@ declare const DEFAULT_RELEASE_CONFIG: {
|
|
|
233
234
|
readonly scope: {
|
|
234
235
|
readonly type: "select";
|
|
235
236
|
readonly title: "Commit Scope";
|
|
236
|
-
readonly description: "Select the
|
|
237
|
+
readonly description: "Select the project that's the most impacted by this change";
|
|
237
238
|
readonly enum: CommitScopesEnum;
|
|
238
239
|
readonly defaultValue: "monorepo";
|
|
239
240
|
readonly maxLength: 50;
|
package/dist/release/config.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CommitTypesEnum, CommitScopesEnum } from '../types.js';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
+
import '@storm-software/config/types';
|
|
3
4
|
import 'nx/src/config/nx-json';
|
|
4
5
|
|
|
5
6
|
declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
@@ -16,7 +17,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
|
16
17
|
readonly scope: {
|
|
17
18
|
readonly type: "select";
|
|
18
19
|
readonly title: "Commit Scope";
|
|
19
|
-
readonly description: "Select the
|
|
20
|
+
readonly description: "Select the project that's the most impacted by this change";
|
|
20
21
|
readonly enum: CommitScopesEnum;
|
|
21
22
|
readonly defaultValue: "monorepo";
|
|
22
23
|
readonly maxLength: 50;
|
|
@@ -233,7 +234,7 @@ declare const DEFAULT_RELEASE_CONFIG: {
|
|
|
233
234
|
readonly scope: {
|
|
234
235
|
readonly type: "select";
|
|
235
236
|
readonly title: "Commit Scope";
|
|
236
|
-
readonly description: "Select the
|
|
237
|
+
readonly description: "Select the project that's the most impacted by this change";
|
|
237
238
|
readonly enum: CommitScopesEnum;
|
|
238
239
|
readonly defaultValue: "monorepo";
|
|
239
240
|
readonly maxLength: 50;
|
package/dist/release/config.js
CHANGED
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
3
3
|
DEFAULT_RELEASE_CONFIG,
|
|
4
4
|
DEFAULT_RELEASE_GROUP_CONFIG
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-LSRFGWF5.js";
|
|
6
|
+
import "../chunk-5XXXTVPU.js";
|
|
7
7
|
export {
|
|
8
8
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
9
9
|
DEFAULT_RELEASE_CONFIG,
|
package/dist/types.cjs
CHANGED
|
@@ -5,12 +5,22 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var _chunkMDOOV3KFcjs = require('./chunk-MDOOV3KF.cjs');
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
|
|
12
11
|
|
|
13
12
|
|
|
13
|
+
var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
exports.COMMIT_TYPES = _chunkZE542BCUcjs.COMMIT_TYPES; exports.DEFAULT_COMMIT_PROMPT_MESSAGES = _chunkZE542BCUcjs.DEFAULT_COMMIT_PROMPT_MESSAGES; exports.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MINIMAL_COMMIT_QUESTIONS = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS; exports.DEFAULT_MINIMAL_COMMIT_RULES = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_RULES; exports.DEFAULT_MINIMAL_COMMIT_SETTINGS = _chunkZE542BCUcjs.DEFAULT_MINIMAL_COMMIT_SETTINGS; exports.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MONOREPO_COMMIT_QUESTIONS = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS; exports.DEFAULT_MONOREPO_COMMIT_RULES = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_RULES; exports.DEFAULT_MONOREPO_COMMIT_SETTINGS = _chunkZE542BCUcjs.DEFAULT_MONOREPO_COMMIT_SETTINGS; exports.RuleConfigSeverity = _chunkZE542BCUcjs.RuleConfigSeverity;
|