@storm-software/git-tools 2.120.0 → 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.
- package/README.md +1 -1
- package/bin/{chunk-FEIWTHDN.cjs → chunk-7V324BCR.cjs} +347 -297
- package/bin/{chunk-VATYGW5F.js → chunk-XJZXOYRK.js} +346 -296
- package/bin/git.cjs +143 -99
- package/bin/git.js +73 -29
- 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-C4NLID2V.js → chunk-25G45MG4.js} +1 -1
- package/dist/{chunk-LSRFGWF5.js → chunk-2IQTQBAX.js} +1 -1
- package/dist/chunk-2RKFQIWE.cjs +19 -0
- package/dist/{chunk-ZE542BCU.cjs → chunk-2SHAD3P5.cjs} +5 -2
- package/dist/{chunk-5XXXTVPU.js → chunk-GRCMQK4Q.js} +5 -2
- package/dist/{chunk-NWZD3QTO.cjs → chunk-RG47FAF4.cjs} +3 -3
- package/dist/commit/minimal.cjs +5 -5
- package/dist/commit/minimal.d.cts +1 -0
- package/dist/commit/minimal.d.ts +1 -0
- package/dist/commit/minimal.js +1 -1
- package/dist/commit/monorepo.cjs +3 -3
- package/dist/commit/monorepo.d.cts +1 -0
- package/dist/commit/monorepo.d.ts +1 -0
- package/dist/commit/monorepo.js +2 -2
- package/dist/commitlint/minimal.cjs +3 -12
- package/dist/commitlint/minimal.d.cts +1 -9
- package/dist/commitlint/minimal.d.ts +1 -9
- package/dist/commitlint/minimal.js +2 -11
- package/dist/commitlint/monorepo.cjs +3 -12
- package/dist/commitlint/monorepo.d.cts +1 -9
- package/dist/commitlint/monorepo.d.ts +1 -9
- package/dist/commitlint/monorepo.js +2 -11
- package/dist/index.cjs +4 -6
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -5
- package/dist/release/config.cjs +3 -3
- package/dist/release/config.d.cts +4 -3
- package/dist/release/config.d.ts +4 -3
- package/dist/release/config.js +2 -2
- package/dist/types.cjs +2 -4
- package/dist/types.d.cts +4 -143
- package/dist/types.d.ts +4 -143
- package/dist/types.js +1 -3
- package/package.json +12 -5
- package/dist/chunk-KD6Y4AJS.cjs +0 -19
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// src/types.ts
|
|
1
|
+
// ../conventional-changelog/src/commit-types.ts
|
|
2
2
|
var COMMIT_TYPES = {
|
|
3
3
|
/* --- Bumps version when selected --- */
|
|
4
4
|
"chore": {
|
|
@@ -128,6 +128,8 @@ var COMMIT_TYPES = {
|
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
};
|
|
131
|
+
|
|
132
|
+
// src/types.ts
|
|
131
133
|
var DEFAULT_MINIMAL_COMMIT_QUESTIONS = {
|
|
132
134
|
type: {
|
|
133
135
|
type: "select",
|
|
@@ -255,8 +257,9 @@ var DEFAULT_MINIMAL_COMMIT_RULES = {
|
|
|
255
257
|
],
|
|
256
258
|
"type-max-length": [2 /* Error */, "always", 20],
|
|
257
259
|
"type-min-length": [2 /* Error */, "always", 3],
|
|
260
|
+
"scope-empty": 0 /* Disabled */,
|
|
258
261
|
"scope-case": 0 /* Disabled */,
|
|
259
|
-
"scope-
|
|
262
|
+
"scope-enum": 0 /* Disabled */
|
|
260
263
|
};
|
|
261
264
|
var DEFAULT_MONOREPO_COMMIT_RULES = {
|
|
262
265
|
"body-leading-blank": [1 /* Warning */, "always"],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk2SHAD3P5cjs = require('./chunk-2SHAD3P5.cjs');
|
|
5
5
|
|
|
6
6
|
// src/release/config.ts
|
|
7
7
|
var DEFAULT_CONVENTIONAL_COMMITS_CONFIG = {
|
|
8
|
-
questions:
|
|
9
|
-
types:
|
|
8
|
+
questions: _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS,
|
|
9
|
+
types: _chunk2SHAD3P5cjs.COMMIT_TYPES
|
|
10
10
|
};
|
|
11
11
|
var DEFAULT_RELEASE_GROUP_CONFIG = {
|
|
12
12
|
projectsRelationship: "independent",
|
package/dist/commit/minimal.cjs
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk2SHAD3P5cjs = require('../../chunk-2SHAD3P5.cjs');
|
|
7
7
|
|
|
8
8
|
// src/commit/config/minimal.ts
|
|
9
9
|
var config = {
|
|
10
|
-
settings:
|
|
11
|
-
messages:
|
|
12
|
-
questions:
|
|
13
|
-
types:
|
|
10
|
+
settings: _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_SETTINGS,
|
|
11
|
+
messages: _chunk2SHAD3P5cjs.DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
12
|
+
questions: _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
13
|
+
types: _chunk2SHAD3P5cjs.COMMIT_TYPES
|
|
14
14
|
};
|
|
15
15
|
var minimal_default = config;
|
|
16
16
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { MinimalCommitConfig } from '../../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: MinimalCommitConfig;
|
package/dist/commit/minimal.d.ts
CHANGED
package/dist/commit/minimal.js
CHANGED
package/dist/commit/monorepo.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunk2RKFQIWEcjs = require('../../chunk-2RKFQIWE.cjs');
|
|
4
|
+
require('../../chunk-2SHAD3P5.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.default =
|
|
7
|
+
exports.default = _chunk2RKFQIWEcjs.monorepo_default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { MonorepoCommitConfig } from '../../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: MonorepoCommitConfig;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { MonorepoCommitConfig } from '../../types.js';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: MonorepoCommitConfig;
|
package/dist/commit/monorepo.js
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk2SHAD3P5cjs = require('../../chunk-2SHAD3P5.cjs');
|
|
4
4
|
|
|
5
5
|
// src/commitlint/config/minimal.ts
|
|
6
6
|
var config = {
|
|
7
|
-
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
|
-
}
|
|
7
|
+
rules: _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/minimal"
|
|
18
9
|
};
|
|
19
10
|
var minimal_default = config;
|
|
20
11
|
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import { DefaultMinimalCommitRulesEnum } from '../../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: {
|
|
7
8
|
rules: DefaultMinimalCommitRulesEnum;
|
|
8
9
|
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
10
|
};
|
|
19
11
|
type MinimalCommitlintConfig = typeof config;
|
|
20
12
|
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import { DefaultMinimalCommitRulesEnum } from '../../types.js';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: {
|
|
7
8
|
rules: DefaultMinimalCommitRulesEnum;
|
|
8
9
|
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
10
|
};
|
|
19
11
|
type MinimalCommitlintConfig = typeof config;
|
|
20
12
|
|
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DEFAULT_MINIMAL_COMMIT_RULES
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-GRCMQK4Q.js";
|
|
4
4
|
|
|
5
5
|
// src/commitlint/config/minimal.ts
|
|
6
6
|
var config = {
|
|
7
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
|
-
}
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/minimal"
|
|
18
9
|
};
|
|
19
10
|
var minimal_default = config;
|
|
20
11
|
export {
|
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk2SHAD3P5cjs = require('../../chunk-2SHAD3P5.cjs');
|
|
4
4
|
|
|
5
5
|
// src/commitlint/config/monorepo.ts
|
|
6
6
|
var config = {
|
|
7
|
-
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
|
-
}
|
|
7
|
+
rules: _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_RULES,
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/monorepo"
|
|
18
9
|
};
|
|
19
10
|
var monorepo_default = config;
|
|
20
11
|
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import { DefaultMonorepoCommitRulesEnum } from '../../types.cjs';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: {
|
|
7
8
|
rules: DefaultMonorepoCommitRulesEnum;
|
|
8
9
|
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
10
|
};
|
|
19
11
|
type MonorepoCommitlintConfig = typeof config;
|
|
20
12
|
|
|
@@ -1,20 +1,12 @@
|
|
|
1
1
|
import { DefaultMonorepoCommitRulesEnum } from '../../types.js';
|
|
2
2
|
import '@nx/devkit';
|
|
3
3
|
import '@storm-software/config/types';
|
|
4
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
5
6
|
|
|
6
7
|
declare const config: {
|
|
7
8
|
rules: DefaultMonorepoCommitRulesEnum;
|
|
8
9
|
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
10
|
};
|
|
19
11
|
type MonorepoCommitlintConfig = typeof config;
|
|
20
12
|
|
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DEFAULT_MONOREPO_COMMIT_RULES
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-GRCMQK4Q.js";
|
|
4
4
|
|
|
5
5
|
// src/commitlint/config/monorepo.ts
|
|
6
6
|
var config = {
|
|
7
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
|
-
}
|
|
8
|
+
helpUrl: "https://developer.stormsoftware.com/commitlint/monorepo"
|
|
18
9
|
};
|
|
19
10
|
var monorepo_default = config;
|
|
20
11
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('./chunk-
|
|
5
|
+
var _chunkRG47FAF4cjs = require('./chunk-RG47FAF4.cjs');
|
|
6
|
+
require('./chunk-2RKFQIWE.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -15,8 +15,8 @@ require('./chunk-KD6Y4AJS.cjs');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
+
var _chunk2SHAD3P5cjs = require('./chunk-2SHAD3P5.cjs');
|
|
18
19
|
|
|
19
|
-
var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
@@ -30,6 +30,4 @@ var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
|
30
30
|
|
|
31
31
|
|
|
32
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;
|
|
33
|
+
exports.DEFAULT_COMMIT_PROMPT_MESSAGES = _chunk2SHAD3P5cjs.DEFAULT_COMMIT_PROMPT_MESSAGES; exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = _chunkRG47FAF4cjs.DEFAULT_CONVENTIONAL_COMMITS_CONFIG; exports.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MINIMAL_COMMIT_QUESTIONS = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS; exports.DEFAULT_MINIMAL_COMMIT_RULES = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_RULES; exports.DEFAULT_MINIMAL_COMMIT_SETTINGS = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_SETTINGS; exports.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MONOREPO_COMMIT_QUESTIONS = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS; exports.DEFAULT_MONOREPO_COMMIT_RULES = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_RULES; exports.DEFAULT_MONOREPO_COMMIT_SETTINGS = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_SETTINGS; exports.DEFAULT_RELEASE_CONFIG = _chunkRG47FAF4cjs.DEFAULT_RELEASE_CONFIG; exports.DEFAULT_RELEASE_GROUP_CONFIG = _chunkRG47FAF4cjs.DEFAULT_RELEASE_GROUP_CONFIG; exports.RuleConfigSeverity = _chunk2SHAD3P5cjs.RuleConfigSeverity;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { CommitLintCLIOptions, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionProps, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, 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, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitRulesEnum, 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
3
|
import '@nx/devkit';
|
|
4
4
|
import '@storm-software/config/types';
|
|
5
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
5
6
|
import 'nx/src/config/nx-json';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { CommitLintCLIOptions, CommitLintOutcome, CommitLintRuleOutcome, CommitPromptMessagesEnum, CommitQuestionProps, CommitRulesEnum, CommitScopeProps, CommitScopesEnum, CommitSettingsEnum, 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, DeepPartial, DefaultCommitPromptMessagesKeys, DefaultCommitRulesEnum, 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
3
|
import '@nx/devkit';
|
|
4
4
|
import '@storm-software/config/types';
|
|
5
|
+
import 'conventional-changelog-storm-software/types/commit-types';
|
|
5
6
|
import 'nx/src/config/nx-json';
|
package/dist/index.js
CHANGED
|
@@ -2,10 +2,9 @@ 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-2IQTQBAX.js";
|
|
6
|
+
import "./chunk-25G45MG4.js";
|
|
7
7
|
import {
|
|
8
|
-
COMMIT_TYPES,
|
|
9
8
|
DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
10
9
|
DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
|
|
11
10
|
DEFAULT_MINIMAL_COMMIT_QUESTIONS,
|
|
@@ -16,9 +15,8 @@ import {
|
|
|
16
15
|
DEFAULT_MONOREPO_COMMIT_RULES,
|
|
17
16
|
DEFAULT_MONOREPO_COMMIT_SETTINGS,
|
|
18
17
|
RuleConfigSeverity
|
|
19
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-GRCMQK4Q.js";
|
|
20
19
|
export {
|
|
21
|
-
COMMIT_TYPES,
|
|
22
20
|
DEFAULT_COMMIT_PROMPT_MESSAGES,
|
|
23
21
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
24
22
|
DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT,
|
package/dist/release/config.cjs
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var _chunkRG47FAF4cjs = require('../chunk-RG47FAF4.cjs');
|
|
6
|
+
require('../chunk-2SHAD3P5.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG =
|
|
11
|
+
exports.DEFAULT_CONVENTIONAL_COMMITS_CONFIG = _chunkRG47FAF4cjs.DEFAULT_CONVENTIONAL_COMMITS_CONFIG; exports.DEFAULT_RELEASE_CONFIG = _chunkRG47FAF4cjs.DEFAULT_RELEASE_CONFIG; exports.DEFAULT_RELEASE_GROUP_CONFIG = _chunkRG47FAF4cjs.DEFAULT_RELEASE_GROUP_CONFIG;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CommitScopesEnum } from '../types.cjs';
|
|
2
|
+
import * as conventional_changelog_storm_software_types_commit_types from 'conventional-changelog-storm-software/types/commit-types';
|
|
2
3
|
import '@nx/devkit';
|
|
3
4
|
import '@storm-software/config/types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
@@ -9,7 +10,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
|
9
10
|
readonly type: "select";
|
|
10
11
|
readonly title: "Commit Type";
|
|
11
12
|
readonly description: "Select the commit type that best describes your changes";
|
|
12
|
-
readonly enum: CommitTypesEnum
|
|
13
|
+
readonly enum: conventional_changelog_storm_software_types_commit_types.CommitTypesEnum;
|
|
13
14
|
readonly defaultValue: "chore";
|
|
14
15
|
readonly maxLength: 20;
|
|
15
16
|
readonly minLength: 3;
|
|
@@ -226,7 +227,7 @@ declare const DEFAULT_RELEASE_CONFIG: {
|
|
|
226
227
|
readonly type: "select";
|
|
227
228
|
readonly title: "Commit Type";
|
|
228
229
|
readonly description: "Select the commit type that best describes your changes";
|
|
229
|
-
readonly enum: CommitTypesEnum
|
|
230
|
+
readonly enum: conventional_changelog_storm_software_types_commit_types.CommitTypesEnum;
|
|
230
231
|
readonly defaultValue: "chore";
|
|
231
232
|
readonly maxLength: 20;
|
|
232
233
|
readonly minLength: 3;
|
package/dist/release/config.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CommitScopesEnum } from '../types.js';
|
|
2
|
+
import * as conventional_changelog_storm_software_types_commit_types from 'conventional-changelog-storm-software/types/commit-types';
|
|
2
3
|
import '@nx/devkit';
|
|
3
4
|
import '@storm-software/config/types';
|
|
4
5
|
import 'nx/src/config/nx-json';
|
|
@@ -9,7 +10,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
|
|
|
9
10
|
readonly type: "select";
|
|
10
11
|
readonly title: "Commit Type";
|
|
11
12
|
readonly description: "Select the commit type that best describes your changes";
|
|
12
|
-
readonly enum: CommitTypesEnum
|
|
13
|
+
readonly enum: conventional_changelog_storm_software_types_commit_types.CommitTypesEnum;
|
|
13
14
|
readonly defaultValue: "chore";
|
|
14
15
|
readonly maxLength: 20;
|
|
15
16
|
readonly minLength: 3;
|
|
@@ -226,7 +227,7 @@ declare const DEFAULT_RELEASE_CONFIG: {
|
|
|
226
227
|
readonly type: "select";
|
|
227
228
|
readonly title: "Commit Type";
|
|
228
229
|
readonly description: "Select the commit type that best describes your changes";
|
|
229
|
-
readonly enum: CommitTypesEnum
|
|
230
|
+
readonly enum: conventional_changelog_storm_software_types_commit_types.CommitTypesEnum;
|
|
230
231
|
readonly defaultValue: "chore";
|
|
231
232
|
readonly maxLength: 20;
|
|
232
233
|
readonly minLength: 3;
|
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-2IQTQBAX.js";
|
|
6
|
+
import "../chunk-GRCMQK4Q.js";
|
|
7
7
|
export {
|
|
8
8
|
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
9
9
|
DEFAULT_RELEASE_CONFIG,
|
package/dist/types.cjs
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
var _chunk2SHAD3P5cjs = require('./chunk-2SHAD3P5.cjs');
|
|
12
13
|
|
|
13
|
-
var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
@@ -21,6 +21,4 @@ var _chunkZE542BCUcjs = require('./chunk-ZE542BCU.cjs');
|
|
|
21
21
|
|
|
22
22
|
|
|
23
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;
|
|
24
|
+
exports.DEFAULT_COMMIT_PROMPT_MESSAGES = _chunk2SHAD3P5cjs.DEFAULT_COMMIT_PROMPT_MESSAGES; exports.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MINIMAL_COMMIT_QUESTIONS = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_QUESTIONS; exports.DEFAULT_MINIMAL_COMMIT_RULES = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_RULES; exports.DEFAULT_MINIMAL_COMMIT_SETTINGS = _chunk2SHAD3P5cjs.DEFAULT_MINIMAL_COMMIT_SETTINGS; exports.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_MESSAGE_FORMAT; exports.DEFAULT_MONOREPO_COMMIT_QUESTIONS = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_QUESTIONS; exports.DEFAULT_MONOREPO_COMMIT_RULES = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_RULES; exports.DEFAULT_MONOREPO_COMMIT_SETTINGS = _chunk2SHAD3P5cjs.DEFAULT_MONOREPO_COMMIT_SETTINGS; exports.RuleConfigSeverity = _chunk2SHAD3P5cjs.RuleConfigSeverity;
|