@w5s/conventional-changelog 3.0.5 → 3.1.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/dist/index.d.ts +78 -69
- package/dist/index.js +303 -317
- package/dist/index.js.map +1 -1
- package/package.json +3 -28
- package/src/createPreset.ts +15 -0
- package/src/index.ts +2 -14
- package/src/meta.ts +8 -0
- package/src/parser.ts +1 -1
- package/src/writer.ts +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ Extra rules
|
|
|
38
38
|
"commitlint": {
|
|
39
39
|
"rules": {
|
|
40
40
|
// Rule to validate gitmoji unicode (🐛) or emoji (:bug:)
|
|
41
|
-
"type-gitmoji-style": ["error", "always", "unicode"
|
|
41
|
+
"type-gitmoji-style": ["error", "always", "unicode"],
|
|
42
42
|
// Rule to validate a gitmoji in the list
|
|
43
43
|
"type-valid-gitmoji": ["error", "always"]
|
|
44
44
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,84 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
//#region src/meta.d.ts
|
|
2
|
+
declare const meta: Readonly<{
|
|
3
|
+
name: string;
|
|
4
|
+
version: string;
|
|
5
|
+
buildNumber: number;
|
|
6
|
+
}>;
|
|
7
|
+
//#endregion
|
|
8
|
+
//#region src/data.d.ts
|
|
9
|
+
type Commit$1 = CommitDefault & {
|
|
10
|
+
type: string | null;
|
|
11
|
+
subject: string | null;
|
|
12
|
+
scope: string | null;
|
|
13
|
+
hash: string | null;
|
|
11
14
|
};
|
|
12
15
|
type CommitConventionalType = 'build' | 'ci' | 'docs' | 'feat' | 'fix' | 'perf' | 'refactor' | 'revert' | 'style' | 'test' | 'wip' | 'chore';
|
|
13
16
|
declare const CommitConventionalType: {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
17
|
+
hasInstance: (anyValue: unknown) => anyValue is CommitConventionalType;
|
|
18
|
+
getData: (commitType: CommitConventionalType) => CommitConventionalTypeData;
|
|
19
|
+
values: () => readonly CommitConventionalType[];
|
|
20
|
+
parse: (anyValue: string) => CommitConventionalType | undefined;
|
|
21
|
+
findWhere: (predicate: (data: CommitConventionalTypeData) => boolean) => CommitConventionalType[];
|
|
22
|
+
Build: "build";
|
|
23
|
+
CI: "ci";
|
|
24
|
+
Docs: "docs";
|
|
25
|
+
Feat: "feat";
|
|
26
|
+
Fix: "fix";
|
|
27
|
+
Perf: "perf";
|
|
28
|
+
Refactor: "refactor";
|
|
29
|
+
Revert: "revert";
|
|
30
|
+
Style: "style";
|
|
31
|
+
Test: "test";
|
|
32
|
+
WIP: "wip";
|
|
33
|
+
Chore: "chore";
|
|
31
34
|
};
|
|
32
35
|
interface CommitConventionalTypeData {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
interface WriterOptions extends Options<Commit> {
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
interface ParserOptions extends ParserOptions$1 {
|
|
36
|
+
'emoji': string;
|
|
37
|
+
'en-US': string;
|
|
38
|
+
'changelog': boolean;
|
|
42
39
|
}
|
|
43
|
-
|
|
40
|
+
//#endregion
|
|
41
|
+
//#region src/gitmoji.d.ts
|
|
44
42
|
type Emoji = Emoji.Unicode | Emoji.Text;
|
|
45
43
|
declare namespace Emoji {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
44
|
+
const reEmojiUnicode: RegExp;
|
|
45
|
+
const reEmojiText: RegExp;
|
|
46
|
+
type Unicode = string & {
|
|
47
|
+
'@@EmojiStyle': 'unicode';
|
|
48
|
+
};
|
|
49
|
+
type Text = string & {
|
|
50
|
+
'@@EmojiStyle': 'text';
|
|
51
|
+
};
|
|
52
|
+
function isUnicode(anyValue: string): anyValue is Unicode;
|
|
53
|
+
function isText(anyValue: string): anyValue is Text;
|
|
54
|
+
function hasInstance(anyValue: string): anyValue is Emoji;
|
|
57
55
|
}
|
|
58
56
|
type GitmojiCode = Emoji & {
|
|
59
|
-
|
|
57
|
+
'@@Gitmoji': true;
|
|
60
58
|
};
|
|
61
59
|
declare namespace GitmojiCode {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
60
|
+
type Unicode = Emoji.Unicode & {
|
|
61
|
+
'@@Gitmoji': true;
|
|
62
|
+
};
|
|
63
|
+
type Emoji = Emoji.Text & {
|
|
64
|
+
'@@Gitmoji': true;
|
|
65
|
+
};
|
|
66
|
+
function isValid(anyValue: string): anyValue is GitmojiCode;
|
|
67
|
+
function toConventionalCommitType(gitmoji: GitmojiCode): CommitConventionalType;
|
|
70
68
|
}
|
|
71
|
-
|
|
69
|
+
//#endregion
|
|
70
|
+
//#region src/parser.d.ts
|
|
71
|
+
interface ParserOptions extends ParserOptionsDefault {}
|
|
72
|
+
//#endregion
|
|
73
|
+
//#region src/writer.d.ts
|
|
74
|
+
interface WriterOptions extends Options<Commit$1> {}
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/whatBump.d.ts
|
|
77
|
+
type Commit = CommitBase;
|
|
78
|
+
//#endregion
|
|
79
|
+
//#region src/createPreset.d.ts
|
|
72
80
|
declare function createPreset(): Promise<{
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
gitRawCommitOpts: {
|
|
82
|
+
format: string;
|
|
83
|
+
};
|
|
84
|
+
parser: ParserOptions;
|
|
85
|
+
writer: WriterOptions;
|
|
86
|
+
whatBump: (commits: ReadonlyArray<Commit>) => {
|
|
87
|
+
level: number;
|
|
88
|
+
reason: string;
|
|
89
|
+
};
|
|
82
90
|
}>;
|
|
83
|
-
|
|
84
|
-
export { Emoji, GitmojiCode, createPreset as default };
|
|
91
|
+
//#endregion
|
|
92
|
+
export { Emoji, GitmojiCode, createPreset as default, meta };
|
|
93
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,334 +1,320 @@
|
|
|
1
|
-
import emojiRegexp from
|
|
2
|
-
import { gitmojis } from
|
|
3
|
-
import { readFileSync } from
|
|
4
|
-
import nodePath from
|
|
5
|
-
import { fileURLToPath } from
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
// src/parser.ts
|
|
13
|
-
var createParserOpts = () => ({
|
|
14
|
-
headerPattern: new RegExp(
|
|
15
|
-
// Type
|
|
16
|
-
// eslint-disable-next-line unicorn/prefer-string-raw
|
|
17
|
-
`^(?<type>\\S*)? (?:\\((?<scope>.*)\\):? )?(?<subject>.*)$`,
|
|
18
|
-
"u"
|
|
19
|
-
),
|
|
20
|
-
headerCorrespondence: ["type", "scope", "subject"],
|
|
21
|
-
revertPattern: /^(?:revert|revert:)\s"?([\S\s]+?)"?\s*this reverts commit (\w*)\./i,
|
|
22
|
-
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"],
|
|
23
|
-
// revertPattern: /revert:\s([\S\s]*?)\s*this reverts commit (\w*)\./i,
|
|
24
|
-
revertCorrespondence: [`header`, `hash`]
|
|
1
|
+
import emojiRegexp from "emoji-regex";
|
|
2
|
+
import { gitmojis } from "gitmojis";
|
|
3
|
+
import { readFileSync } from "node:fs";
|
|
4
|
+
import nodePath from "node:path";
|
|
5
|
+
import { fileURLToPath } from "node:url";
|
|
6
|
+
//#region src/meta.ts
|
|
7
|
+
const meta = Object.freeze({
|
|
8
|
+
name: "@w5s/conventional-changelog",
|
|
9
|
+
version: "3.1.0",
|
|
10
|
+
buildNumber: 1
|
|
25
11
|
});
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"emoji": "\u2728",
|
|
48
|
-
"en-US": "Features",
|
|
49
|
-
"changelog": true
|
|
50
|
-
},
|
|
51
|
-
fix: {
|
|
52
|
-
"emoji": "\u{1F41B}",
|
|
53
|
-
"en-US": "Bug Fixes",
|
|
54
|
-
"changelog": true
|
|
55
|
-
},
|
|
56
|
-
build: {
|
|
57
|
-
"emoji": "\u{1F477}",
|
|
58
|
-
"en-US": "Build System",
|
|
59
|
-
"changelog": false
|
|
60
|
-
},
|
|
61
|
-
chore: {
|
|
62
|
-
"emoji": "\u{1F3AB}",
|
|
63
|
-
"en-US": "Chores",
|
|
64
|
-
"changelog": false
|
|
65
|
-
},
|
|
66
|
-
ci: {
|
|
67
|
-
"emoji": "\u{1F527}",
|
|
68
|
-
"en-US": "Continuous Integration",
|
|
69
|
-
"changelog": false
|
|
70
|
-
},
|
|
71
|
-
docs: {
|
|
72
|
-
"emoji": "\u{1F4DD}",
|
|
73
|
-
"en-US": "Documentation",
|
|
74
|
-
"changelog": false
|
|
75
|
-
},
|
|
76
|
-
test: {
|
|
77
|
-
"emoji": "\u2705",
|
|
78
|
-
"en-US": "Tests",
|
|
79
|
-
"changelog": false
|
|
80
|
-
},
|
|
81
|
-
perf: {
|
|
82
|
-
"emoji": "\u26A1",
|
|
83
|
-
"en-US": "Performance Improvements",
|
|
84
|
-
"changelog": true
|
|
85
|
-
},
|
|
86
|
-
refactor: {
|
|
87
|
-
"emoji": "\u267B",
|
|
88
|
-
"en-US": "Code Refactoring",
|
|
89
|
-
"changelog": false
|
|
90
|
-
},
|
|
91
|
-
revert: {
|
|
92
|
-
"emoji": "\u23EA",
|
|
93
|
-
"en-US": "Reverts",
|
|
94
|
-
"changelog": true
|
|
95
|
-
},
|
|
96
|
-
style: {
|
|
97
|
-
"emoji": "\u{1F484}",
|
|
98
|
-
"en-US": "Styles",
|
|
99
|
-
"changelog": false
|
|
100
|
-
},
|
|
101
|
-
wip: {
|
|
102
|
-
"emoji": "\u{1F6A7}",
|
|
103
|
-
"en-US": "Work in progress",
|
|
104
|
-
"changelog": false
|
|
105
|
-
}
|
|
106
|
-
};
|
|
107
|
-
function hasInstance(anyValue) {
|
|
108
|
-
return typeof anyValue === "string" && enumValuesSet.has(anyValue);
|
|
109
|
-
}
|
|
110
|
-
function getData(commitType) {
|
|
111
|
-
return typeData[commitType];
|
|
112
|
-
}
|
|
113
|
-
function parse(anyValue) {
|
|
114
|
-
return hasInstance(anyValue) ? anyValue : void 0;
|
|
115
|
-
}
|
|
116
|
-
function values() {
|
|
117
|
-
return enumValues;
|
|
118
|
-
}
|
|
119
|
-
function findWhere(predicate) {
|
|
120
|
-
return enumValues.filter((enumValue) => predicate(getData(enumValue)));
|
|
121
|
-
}
|
|
122
|
-
return { ...enumObject, hasInstance, getData, values, parse, findWhere };
|
|
123
|
-
})();
|
|
124
|
-
var Emoji;
|
|
125
|
-
((Emoji2) => {
|
|
126
|
-
Emoji2.reEmojiUnicode = emojiRegexp();
|
|
127
|
-
Emoji2.reEmojiText = /:\w*:/;
|
|
128
|
-
const reMatchOnly = (input) => new RegExp(`^${input.source}$`, "");
|
|
129
|
-
const _reEmojiUnicode = reMatchOnly(Emoji2.reEmojiUnicode);
|
|
130
|
-
const _reEmojiText = reMatchOnly(Emoji2.reEmojiText);
|
|
131
|
-
function isUnicode(anyValue) {
|
|
132
|
-
return _reEmojiUnicode.test(anyValue);
|
|
133
|
-
}
|
|
134
|
-
Emoji2.isUnicode = isUnicode;
|
|
135
|
-
function isText(anyValue) {
|
|
136
|
-
return _reEmojiText.test(anyValue);
|
|
137
|
-
}
|
|
138
|
-
Emoji2.isText = isText;
|
|
139
|
-
function hasInstance(anyValue) {
|
|
140
|
-
return isText(anyValue) || isUnicode(anyValue);
|
|
141
|
-
}
|
|
142
|
-
Emoji2.hasInstance = hasInstance;
|
|
12
|
+
//#endregion
|
|
13
|
+
//#region src/gitmoji.ts
|
|
14
|
+
let Emoji;
|
|
15
|
+
(function(_Emoji) {
|
|
16
|
+
const reEmojiUnicode = _Emoji.reEmojiUnicode = emojiRegexp();
|
|
17
|
+
const reEmojiText = _Emoji.reEmojiText = /:\w*:/;
|
|
18
|
+
const reMatchOnly = (input) => new RegExp(`^${input.source}$`, "");
|
|
19
|
+
const _reEmojiUnicode = reMatchOnly(reEmojiUnicode);
|
|
20
|
+
const _reEmojiText = reMatchOnly(reEmojiText);
|
|
21
|
+
function isUnicode(anyValue) {
|
|
22
|
+
return _reEmojiUnicode.test(anyValue);
|
|
23
|
+
}
|
|
24
|
+
_Emoji.isUnicode = isUnicode;
|
|
25
|
+
function isText(anyValue) {
|
|
26
|
+
return _reEmojiText.test(anyValue);
|
|
27
|
+
}
|
|
28
|
+
_Emoji.isText = isText;
|
|
29
|
+
function hasInstance(anyValue) {
|
|
30
|
+
return isText(anyValue) || isUnicode(anyValue);
|
|
31
|
+
}
|
|
32
|
+
_Emoji.hasInstance = hasInstance;
|
|
143
33
|
})(Emoji || (Emoji = {}));
|
|
144
|
-
|
|
145
|
-
((
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
entries.reduce(
|
|
182
|
-
(acc, [commitType, gitmojiUnicodeArray]) => acc.concat(gitmojiUnicodeArray.map((gitmojiUnicode) => [gitmojiUnicode, commitType])).concat(
|
|
183
|
-
gitmojiUnicodeArray.map((gitmojiUnicode) => [
|
|
184
|
-
// eslint-disable-next-line ts/no-non-null-assertion, ts/no-non-null-asserted-optional-chain
|
|
185
|
-
index.emoji.get(gitmojiUnicode)?.code,
|
|
186
|
-
commitType
|
|
187
|
-
])
|
|
188
|
-
),
|
|
189
|
-
[]
|
|
190
|
-
)
|
|
191
|
-
);
|
|
192
|
-
})();
|
|
193
|
-
function toConventionalCommitType2(gitmoji) {
|
|
194
|
-
return conversionMap.get(gitmoji) ?? defaultType;
|
|
195
|
-
}
|
|
196
|
-
GitmojiCode2.toConventionalCommitType = toConventionalCommitType2;
|
|
34
|
+
let GitmojiCode;
|
|
35
|
+
(function(_GitmojiCode) {
|
|
36
|
+
const allGitmojiCodes = new Set(gitmojis.map((gitmoji) => gitmoji.code).concat(gitmojis.map((gitmoji) => gitmoji.emoji)));
|
|
37
|
+
const index = { emoji: createIndex(gitmojis, "emoji") };
|
|
38
|
+
function createIndex(list, key) {
|
|
39
|
+
return new Map(list.map((gitmoji) => [gitmoji[key], gitmoji]));
|
|
40
|
+
}
|
|
41
|
+
function isValid(anyValue) {
|
|
42
|
+
return allGitmojiCodes.has(anyValue);
|
|
43
|
+
}
|
|
44
|
+
_GitmojiCode.isValid = isValid;
|
|
45
|
+
const defaultType = "chore";
|
|
46
|
+
const conversionMap = (() => {
|
|
47
|
+
const entries = Array.from(Object.entries({
|
|
48
|
+
feat: [
|
|
49
|
+
"✨",
|
|
50
|
+
"♿️",
|
|
51
|
+
"🚸"
|
|
52
|
+
],
|
|
53
|
+
fix: ["🐛"],
|
|
54
|
+
docs: ["📝"],
|
|
55
|
+
style: ["🎨", "🚨"],
|
|
56
|
+
refactor: ["♻️", "🏗️"],
|
|
57
|
+
test: ["✅", "🧪"],
|
|
58
|
+
perf: ["⚡️"],
|
|
59
|
+
revert: ["⏪️"],
|
|
60
|
+
ci: ["👷", "💚"],
|
|
61
|
+
wip: ["🚧"],
|
|
62
|
+
build: [],
|
|
63
|
+
chore: ["🔧"]
|
|
64
|
+
}));
|
|
65
|
+
return new Map(entries.reduce((acc, [commitType, gitmojiUnicodeArray]) => acc.concat(gitmojiUnicodeArray.map((gitmojiUnicode) => [gitmojiUnicode, commitType])).concat(gitmojiUnicodeArray.map((gitmojiUnicode) => [index.emoji.get(gitmojiUnicode)?.code, commitType])), []));
|
|
66
|
+
})();
|
|
67
|
+
function toConventionalCommitType(gitmoji) {
|
|
68
|
+
return conversionMap.get(gitmoji) ?? defaultType;
|
|
69
|
+
}
|
|
70
|
+
_GitmojiCode.toConventionalCommitType = toConventionalCommitType;
|
|
197
71
|
})(GitmojiCode || (GitmojiCode = {}));
|
|
198
|
-
|
|
199
|
-
|
|
72
|
+
//#endregion
|
|
73
|
+
//#region src/git-raw-commit-opts.ts
|
|
74
|
+
const gitRawCommitOpts = { format: "%B%n-hash-%n%H%n-gitTags-%n%d%n-committerDate-%n%ci%n-authorName-%n%an%n-authorEmail-%n%ae" };
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/parser.ts
|
|
77
|
+
const createParserOpts = () => ({
|
|
78
|
+
headerPattern: /* @__PURE__ */ new RegExp("^(?<type>\\S*)? (?:\\((?<scope>.*)\\):? )?(?<subject>.*)$", "u"),
|
|
79
|
+
headerCorrespondence: [
|
|
80
|
+
"type",
|
|
81
|
+
"scope",
|
|
82
|
+
"subject"
|
|
83
|
+
],
|
|
84
|
+
revertPattern: /^(?:revert|revert:)\s"?([\S\s]+?)"?\s*this reverts commit (\w*)\./i,
|
|
85
|
+
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"],
|
|
86
|
+
revertCorrespondence: [`header`, `hash`]
|
|
87
|
+
});
|
|
88
|
+
//#endregion
|
|
89
|
+
//#region src/data.ts
|
|
90
|
+
const CommitConventionalType = (() => {
|
|
91
|
+
const enumObject = Object.freeze({
|
|
92
|
+
Build: "build",
|
|
93
|
+
CI: "ci",
|
|
94
|
+
Docs: "docs",
|
|
95
|
+
Feat: "feat",
|
|
96
|
+
Fix: "fix",
|
|
97
|
+
Perf: "perf",
|
|
98
|
+
Refactor: "refactor",
|
|
99
|
+
Revert: "revert",
|
|
100
|
+
Style: "style",
|
|
101
|
+
Test: "test",
|
|
102
|
+
WIP: "wip",
|
|
103
|
+
Chore: "chore"
|
|
104
|
+
});
|
|
105
|
+
const enumValues = Object.freeze(Object.values(enumObject).sort());
|
|
106
|
+
const enumValuesSet = new Set(enumValues);
|
|
107
|
+
const typeData = {
|
|
108
|
+
feat: {
|
|
109
|
+
"emoji": "✨",
|
|
110
|
+
"en-US": "Features",
|
|
111
|
+
"changelog": true
|
|
112
|
+
},
|
|
113
|
+
fix: {
|
|
114
|
+
"emoji": "🐛",
|
|
115
|
+
"en-US": "Bug Fixes",
|
|
116
|
+
"changelog": true
|
|
117
|
+
},
|
|
118
|
+
build: {
|
|
119
|
+
"emoji": "👷",
|
|
120
|
+
"en-US": "Build System",
|
|
121
|
+
"changelog": false
|
|
122
|
+
},
|
|
123
|
+
chore: {
|
|
124
|
+
"emoji": "🎫",
|
|
125
|
+
"en-US": "Chores",
|
|
126
|
+
"changelog": false
|
|
127
|
+
},
|
|
128
|
+
ci: {
|
|
129
|
+
"emoji": "🔧",
|
|
130
|
+
"en-US": "Continuous Integration",
|
|
131
|
+
"changelog": false
|
|
132
|
+
},
|
|
133
|
+
docs: {
|
|
134
|
+
"emoji": "📝",
|
|
135
|
+
"en-US": "Documentation",
|
|
136
|
+
"changelog": false
|
|
137
|
+
},
|
|
138
|
+
test: {
|
|
139
|
+
"emoji": "✅",
|
|
140
|
+
"en-US": "Tests",
|
|
141
|
+
"changelog": false
|
|
142
|
+
},
|
|
143
|
+
perf: {
|
|
144
|
+
"emoji": "⚡",
|
|
145
|
+
"en-US": "Performance Improvements",
|
|
146
|
+
"changelog": true
|
|
147
|
+
},
|
|
148
|
+
refactor: {
|
|
149
|
+
"emoji": "♻",
|
|
150
|
+
"en-US": "Code Refactoring",
|
|
151
|
+
"changelog": false
|
|
152
|
+
},
|
|
153
|
+
revert: {
|
|
154
|
+
"emoji": "⏪",
|
|
155
|
+
"en-US": "Reverts",
|
|
156
|
+
"changelog": true
|
|
157
|
+
},
|
|
158
|
+
style: {
|
|
159
|
+
"emoji": "💄",
|
|
160
|
+
"en-US": "Styles",
|
|
161
|
+
"changelog": false
|
|
162
|
+
},
|
|
163
|
+
wip: {
|
|
164
|
+
"emoji": "🚧",
|
|
165
|
+
"en-US": "Work in progress",
|
|
166
|
+
"changelog": false
|
|
167
|
+
}
|
|
168
|
+
};
|
|
169
|
+
function hasInstance(anyValue) {
|
|
170
|
+
return typeof anyValue === "string" && enumValuesSet.has(anyValue);
|
|
171
|
+
}
|
|
172
|
+
function getData(commitType) {
|
|
173
|
+
return typeData[commitType];
|
|
174
|
+
}
|
|
175
|
+
function parse(anyValue) {
|
|
176
|
+
return hasInstance(anyValue) ? anyValue : void 0;
|
|
177
|
+
}
|
|
178
|
+
function values() {
|
|
179
|
+
return enumValues;
|
|
180
|
+
}
|
|
181
|
+
function findWhere(predicate) {
|
|
182
|
+
return enumValues.filter((enumValue) => predicate(getData(enumValue)));
|
|
183
|
+
}
|
|
184
|
+
return {
|
|
185
|
+
...enumObject,
|
|
186
|
+
hasInstance,
|
|
187
|
+
getData,
|
|
188
|
+
values,
|
|
189
|
+
parse,
|
|
190
|
+
findWhere
|
|
191
|
+
};
|
|
192
|
+
})();
|
|
193
|
+
//#endregion
|
|
194
|
+
//#region src/whatBump.ts
|
|
200
195
|
function toConventionalCommitType(text) {
|
|
201
|
-
|
|
196
|
+
return GitmojiCode.isValid(text) ? GitmojiCode.toConventionalCommitType(text) : CommitConventionalType.hasInstance(text) ? text : void 0;
|
|
202
197
|
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
reason: breakings === 1 ? `There is ${breakings} BREAKING CHANGE and ${features} features` : `There are ${breakings} BREAKING CHANGES and ${features} features`
|
|
222
|
-
};
|
|
198
|
+
const whatBump = (commits) => {
|
|
199
|
+
let level = 2;
|
|
200
|
+
let breakings = 0;
|
|
201
|
+
let features = 0;
|
|
202
|
+
for (const { type, notes } of commits) {
|
|
203
|
+
const conventionalType = type == null ? type : toConventionalCommitType(type);
|
|
204
|
+
if (notes.length > 0) {
|
|
205
|
+
breakings += notes.length;
|
|
206
|
+
level = 0;
|
|
207
|
+
} else if (conventionalType === CommitConventionalType.Feat) {
|
|
208
|
+
features += 1;
|
|
209
|
+
if (level === 2) level = 1;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
return {
|
|
213
|
+
level,
|
|
214
|
+
reason: breakings === 1 ? `There is ${breakings} BREAKING CHANGE and ${features} features` : `There are ${breakings} BREAKING CHANGES and ${features} features`
|
|
215
|
+
};
|
|
223
216
|
};
|
|
224
|
-
|
|
225
|
-
|
|
217
|
+
//#endregion
|
|
218
|
+
//#region src/transform.ts
|
|
226
219
|
function displayScope(scope, scopeDisplayNameMap) {
|
|
227
|
-
|
|
220
|
+
return scope == null || scope.length === 0 ? scopeDisplayNameMap["*"] : scopeDisplayNameMap[scope] == null ? scope : scopeDisplayNameMap[scope];
|
|
228
221
|
}
|
|
229
222
|
function displayType(type, options = {}) {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
223
|
+
const { withEmoji = true, language = "en-US" } = options;
|
|
224
|
+
if (CommitConventionalType.hasInstance(type)) {
|
|
225
|
+
const { emoji, [language]: title } = CommitConventionalType.getData(type);
|
|
226
|
+
return `${withEmoji ? `${emoji} ` : ""}${title}`;
|
|
227
|
+
}
|
|
228
|
+
return type;
|
|
236
229
|
}
|
|
237
230
|
function createTransform(config) {
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
};
|
|
291
|
-
};
|
|
292
|
-
return transform;
|
|
231
|
+
const displayTypes = new Set(config.displayTypes == null ? CommitConventionalType.values() : config.displayTypes);
|
|
232
|
+
const ignoreType = (type) => type == null || !displayTypes.has(type);
|
|
233
|
+
const ignoreScope = (scope) => config.displayScopes == null ? false : scope != null && !config.displayScopes.includes(scope);
|
|
234
|
+
const transform = (commit, { repository, host, owner, repoUrl }) => {
|
|
235
|
+
const discard = commit.notes.length === 0;
|
|
236
|
+
const issues = /* @__PURE__ */ new Set();
|
|
237
|
+
const notes = commit.notes.map((note) => ({
|
|
238
|
+
...note,
|
|
239
|
+
title: `${config.withEmoji === false ? "" : "💥 "}BREAKING CHANGES`
|
|
240
|
+
}));
|
|
241
|
+
const conventionalType = commit.type == null ? void 0 : CommitConventionalType.parse(commit.type) ?? (GitmojiCode.isValid(commit.type) ? GitmojiCode.toConventionalCommitType(commit.type) : void 0);
|
|
242
|
+
if (ignoreType(conventionalType) && discard) return false;
|
|
243
|
+
const type = conventionalType == null ? null : displayType(conventionalType, { withEmoji: config.withEmoji });
|
|
244
|
+
if (ignoreScope(commit.scope)) return false;
|
|
245
|
+
const scopeIntermediate = commit.scope === "*" ? "" : commit.scope;
|
|
246
|
+
const scope = config.scopeDisplayName == null ? null : displayScope(scopeIntermediate, config.scopeDisplayName) ?? null;
|
|
247
|
+
const hash = typeof commit.hash === "string" ? commit.hash.slice(0, 7) : commit.hash;
|
|
248
|
+
const subject = typeof commit.subject === "string" ? (() => {
|
|
249
|
+
let returnValue = commit.subject;
|
|
250
|
+
const url = repository == null ? repoUrl : [
|
|
251
|
+
host,
|
|
252
|
+
owner,
|
|
253
|
+
repository
|
|
254
|
+
].filter(Boolean).join("/");
|
|
255
|
+
if (url != null) {
|
|
256
|
+
const issueURL = `${url}/issues/`;
|
|
257
|
+
returnValue = returnValue.replace(/#(\d+)/g, (_, issue) => {
|
|
258
|
+
issues.add(issue);
|
|
259
|
+
return `[#${issue}](${issueURL}${issue})`;
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
if (host != null) returnValue = returnValue.replace(/\B@([\da-z](?:-?[\d/a-z]){0,38})/g, (_, username) => username.includes("/") ? `@${username}` : `[@${username}](${host}/${username})`);
|
|
263
|
+
return returnValue;
|
|
264
|
+
})() : commit.subject;
|
|
265
|
+
const references = commit.references.filter((reference) => !issues.has(reference.issue));
|
|
266
|
+
return {
|
|
267
|
+
...commit,
|
|
268
|
+
type,
|
|
269
|
+
hash,
|
|
270
|
+
scope,
|
|
271
|
+
subject,
|
|
272
|
+
references,
|
|
273
|
+
header: commit.header,
|
|
274
|
+
body: commit.body,
|
|
275
|
+
footer: commit.footer,
|
|
276
|
+
merge: commit.merge,
|
|
277
|
+
revert: commit.revert,
|
|
278
|
+
notes,
|
|
279
|
+
mentions: commit.mentions
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
return transform;
|
|
293
283
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
// eslint-disable-next-line unicorn/prefer-string-replace-all
|
|
317
|
-
commitPartial: commitPartial.replace(/{{gitUserInfo}}/g, author),
|
|
318
|
-
footerPartial
|
|
319
|
-
};
|
|
284
|
+
//#endregion
|
|
285
|
+
//#region src/writer.ts
|
|
286
|
+
const _dirname = typeof __dirname === "undefined" ? nodePath.dirname(fileURLToPath(import.meta.url)) : __dirname;
|
|
287
|
+
const basePath = nodePath.resolve(nodePath.dirname(_dirname), "./template");
|
|
288
|
+
const defaultDisplayTypes = CommitConventionalType.findWhere((_) => _.changelog);
|
|
289
|
+
const createWriterOpts = async () => {
|
|
290
|
+
const mainTemplate = readFileSync(`${basePath}/template.hbs`, "utf8");
|
|
291
|
+
const headerPartial = readFileSync(`${basePath}/header.hbs`, "utf8");
|
|
292
|
+
const commitPartial = readFileSync(`${basePath}/commit.hbs`, "utf8");
|
|
293
|
+
const footerPartial = readFileSync(`${basePath}/footer.hbs`, "utf8");
|
|
294
|
+
const author = readFileSync(`${basePath}/author.hbs`, "utf8");
|
|
295
|
+
return {
|
|
296
|
+
transform: createTransform({ displayTypes: defaultDisplayTypes }),
|
|
297
|
+
groupBy: "type",
|
|
298
|
+
commitGroupsSort: "title",
|
|
299
|
+
commitsSort: ["scope", "subject"],
|
|
300
|
+
noteGroupsSort: "title",
|
|
301
|
+
mainTemplate,
|
|
302
|
+
headerPartial,
|
|
303
|
+
commitPartial: commitPartial.replace(/{{gitUserInfo}}/g, author),
|
|
304
|
+
footerPartial
|
|
305
|
+
};
|
|
320
306
|
};
|
|
321
|
-
|
|
322
|
-
|
|
307
|
+
//#endregion
|
|
308
|
+
//#region src/createPreset.ts
|
|
323
309
|
async function createPreset() {
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
310
|
+
return {
|
|
311
|
+
gitRawCommitOpts,
|
|
312
|
+
parser: createParserOpts(),
|
|
313
|
+
writer: await createWriterOpts(),
|
|
314
|
+
whatBump
|
|
315
|
+
};
|
|
330
316
|
}
|
|
317
|
+
//#endregion
|
|
318
|
+
export { Emoji, GitmojiCode, createPreset as default, meta };
|
|
331
319
|
|
|
332
|
-
export { Emoji, GitmojiCode, createPreset as default };
|
|
333
|
-
//# sourceMappingURL=index.js.map
|
|
334
320
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/git-raw-commit-opts.ts","../src/parser.ts","../src/data.ts","../src/gitmoji.ts","../src/whatBump.ts","../src/transform.ts","../src/writer.ts","../src/index.ts"],"names":["Emoji","GitmojiCode","toConventionalCommitType"],"mappings":"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","file":"index.js","sourcesContent":["export const gitRawCommitOpts = {\n format: '%B%n-hash-%n%H%n-gitTags-%n%d%n-committerDate-%n%ci%n-authorName-%n%an%n-authorEmail-%n%ae',\n};\n","import type { ParserOptions as ParserOptionsDefault } from 'conventional-commits-parser';\n\nexport interface ParserOptions extends ParserOptionsDefault {}\n\nexport const createParserOpts = (): ParserOptions => ({\n headerPattern: new RegExp(\n // Type\n // eslint-disable-next-line unicorn/prefer-string-raw\n `^(?<type>\\\\S*)? ` +\n // Scope\n // eslint-disable-next-line unicorn/prefer-string-raw\n `(?:\\\\((?<scope>.*)\\\\):? )?` +\n // Subject\n `(?<subject>.*)$`,\n 'u',\n ),\n headerCorrespondence: ['type', 'scope', 'subject'],\n revertPattern: /^(?:revert|revert:)\\s\"?([\\S\\s]+?)\"?\\s*this reverts commit (\\w*)\\./i,\n noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES'],\n // revertPattern: /revert:\\s([\\S\\s]*?)\\s*this reverts commit (\\w*)\\./i,\n revertCorrespondence: [`header`, `hash`],\n});\n","import type { Commit as CommitDefault } from 'conventional-commits-parser';\n\nexport type Commit = CommitDefault & {\n type: string | null;\n subject: string | null;\n scope: string | null;\n hash: string | null;\n};\n\nexport type CommitConventionalType =\n | 'build'\n | 'ci'\n | 'docs'\n | 'feat'\n | 'fix'\n | 'perf'\n | 'refactor'\n | 'revert'\n | 'style'\n | 'test'\n | 'wip'\n | 'chore';\n\nexport const CommitConventionalType = (() => {\n const enumObject = Object.freeze({\n Build: 'build',\n CI: 'ci',\n Docs: 'docs',\n Feat: 'feat',\n Fix: 'fix',\n Perf: 'perf',\n Refactor: 'refactor',\n Revert: 'revert',\n Style: 'style',\n Test: 'test',\n WIP: 'wip',\n Chore: 'chore',\n });\n // eslint-disable-next-line unicorn/no-array-sort\n const enumValues: readonly CommitConventionalType[] = Object.freeze(Object.values(enumObject).sort());\n const enumValuesSet = new Set(enumValues);\n\n const typeData: Record<CommitConventionalType, CommitConventionalTypeData> = {\n feat: {\n 'emoji': '✨',\n 'en-US': 'Features',\n 'changelog': true,\n },\n fix: {\n 'emoji': '🐛',\n 'en-US': 'Bug Fixes',\n 'changelog': true,\n },\n build: {\n 'emoji': '👷',\n 'en-US': 'Build System',\n 'changelog': false,\n },\n chore: {\n 'emoji': '🎫',\n 'en-US': 'Chores',\n 'changelog': false,\n },\n ci: {\n 'emoji': '🔧',\n 'en-US': 'Continuous Integration',\n 'changelog': false,\n },\n docs: {\n 'emoji': '📝',\n 'en-US': 'Documentation',\n 'changelog': false,\n },\n test: {\n 'emoji': '✅',\n 'en-US': 'Tests',\n 'changelog': false,\n },\n perf: {\n 'emoji': '⚡',\n 'en-US': 'Performance Improvements',\n 'changelog': true,\n },\n refactor: {\n 'emoji': '♻',\n 'en-US': 'Code Refactoring',\n 'changelog': false,\n },\n revert: {\n 'emoji': '⏪',\n 'en-US': 'Reverts',\n 'changelog': true,\n },\n style: {\n 'emoji': '💄',\n 'en-US': 'Styles',\n 'changelog': false,\n },\n wip: {\n 'emoji': '🚧',\n 'en-US': 'Work in progress',\n 'changelog': false,\n },\n };\n\n function hasInstance(anyValue: unknown): anyValue is CommitConventionalType {\n return typeof anyValue === 'string' && enumValuesSet.has(anyValue as unknown as CommitConventionalType);\n }\n\n function getData(commitType: CommitConventionalType): CommitConventionalTypeData {\n return typeData[commitType];\n }\n\n function parse(anyValue: string): CommitConventionalType | undefined {\n return hasInstance(anyValue) ? anyValue : undefined;\n }\n\n function values() {\n return enumValues;\n }\n\n function findWhere(predicate: (data: CommitConventionalTypeData) => boolean): CommitConventionalType[] {\n return enumValues.filter((enumValue) => predicate(getData(enumValue)));\n }\n\n return { ...enumObject, hasInstance, getData, values, parse, findWhere };\n})();\n\nexport interface CommitConventionalTypeData {\n 'emoji': string;\n 'en-US': string;\n 'changelog': boolean;\n}\n","/* eslint-disable unicorn/prefer-spread */\nimport emojiRegexp from 'emoji-regex';\nimport { type Gitmoji, gitmojis } from 'gitmojis';\nimport type { CommitConventionalType } from './data.js';\n\nexport type Emoji = Emoji.Unicode | Emoji.Text;\nexport namespace Emoji {\n export const reEmojiUnicode = emojiRegexp();\n\n export const reEmojiText = /:\\w*:/;\n\n const reMatchOnly = (input: RegExp) => new RegExp(`^${input.source}$`, '');\n const _reEmojiUnicode = reMatchOnly(reEmojiUnicode);\n const _reEmojiText = reMatchOnly(reEmojiText);\n\n export type Unicode = string & { '@@EmojiStyle': 'unicode' };\n export type Text = string & { '@@EmojiStyle': 'text' };\n\n export function isUnicode(anyValue: string): anyValue is Unicode {\n return _reEmojiUnicode.test(anyValue);\n }\n\n export function isText(anyValue: string): anyValue is Text {\n return _reEmojiText.test(anyValue);\n }\n\n export function hasInstance(anyValue: string): anyValue is Emoji {\n return isText(anyValue) || isUnicode(anyValue);\n }\n}\n\nexport type GitmojiCode = Emoji & { '@@Gitmoji': true };\nexport namespace GitmojiCode {\n export type Unicode = Emoji.Unicode & { '@@Gitmoji': true };\n export type Emoji = Emoji.Text & { '@@Gitmoji': true };\n\n // export const reEmoji = emojiRegexp();\n\n const allGitmojiCodes = new Set(\n gitmojis\n .map((gitmoji) => gitmoji.code as GitmojiCode)\n .concat(gitmojis.map((gitmoji) => gitmoji.emoji as GitmojiCode)),\n );\n const index = {\n // code: createIndex(gitmojis, 'code'),\n emoji: createIndex(gitmojis, 'emoji'),\n };\n\n function createIndex<K extends keyof Gitmoji>(list: readonly Gitmoji[], key: K): ReadonlyMap<Gitmoji[K], Gitmoji> {\n return new Map(list.map((gitmoji) => [gitmoji[key], gitmoji]));\n }\n\n export function isValid(anyValue: string): anyValue is GitmojiCode {\n return allGitmojiCodes.has(anyValue as GitmojiCode);\n }\n\n const defaultType = 'chore';\n const conversionMap: ReadonlyMap<GitmojiCode, CommitConventionalType> = (() => {\n const data: Record<CommitConventionalType, GitmojiCode.Unicode[]> = {\n feat: ['✨', '♿️', '🚸'] as GitmojiCode.Unicode[],\n fix: ['🐛'] as GitmojiCode.Unicode[],\n docs: ['📝'] as GitmojiCode.Unicode[],\n style: ['🎨', '🚨'] as GitmojiCode.Unicode[],\n refactor: ['♻️', '🏗️'] as GitmojiCode.Unicode[],\n test: ['✅', '🧪'] as GitmojiCode.Unicode[],\n perf: ['⚡️'] as GitmojiCode.Unicode[],\n revert: ['⏪️'] as GitmojiCode.Unicode[],\n ci: ['👷', '💚'] as GitmojiCode.Unicode[],\n wip: ['🚧'] as GitmojiCode.Unicode[],\n build: [] as GitmojiCode.Unicode[],\n chore: ['🔧'] as GitmojiCode.Unicode[],\n };\n\n const entries = Array.from<[CommitConventionalType, GitmojiCode.Unicode[]]>(\n // @ts-ignore entries are not well typed\n Object.entries(data),\n );\n return new Map(\n entries.reduce<Array<[GitmojiCode, CommitConventionalType]>>(\n (acc, [commitType, gitmojiUnicodeArray]) =>\n acc\n .concat(gitmojiUnicodeArray.map((gitmojiUnicode) => [gitmojiUnicode, commitType]))\n\n .concat(\n gitmojiUnicodeArray.map((gitmojiUnicode) => [\n // eslint-disable-next-line ts/no-non-null-assertion, ts/no-non-null-asserted-optional-chain\n index.emoji.get(gitmojiUnicode)?.code! as GitmojiCode,\n commitType,\n ]),\n ),\n [],\n ),\n );\n })();\n\n export function toConventionalCommitType(gitmoji: GitmojiCode): CommitConventionalType {\n return conversionMap.get(gitmoji) ?? defaultType;\n }\n}\n","import type { Commit as CommitBase } from 'conventional-commits-parser';\nimport { CommitConventionalType } from './data.js';\nimport { GitmojiCode } from './gitmoji.js';\n\nfunction toConventionalCommitType(text: string) {\n return GitmojiCode.isValid(text)\n ? GitmojiCode.toConventionalCommitType(text)\n : CommitConventionalType.hasInstance(text)\n ? text\n : undefined;\n}\n\nexport type Commit = CommitBase;\n\nexport const whatBump = (commits: ReadonlyArray<Commit>) => {\n let level = 2;\n let breakings = 0;\n let features = 0;\n\n for (const { type, notes } of commits) {\n const conventionalType = type == null ? type : toConventionalCommitType(type);\n if (notes.length > 0) {\n breakings += notes.length;\n level = 0;\n } else if (conventionalType === CommitConventionalType.Feat) {\n features += 1;\n if (level === 2) {\n level = 1;\n }\n }\n }\n\n return {\n level,\n reason:\n breakings === 1\n ? `There is ${breakings} BREAKING CHANGE and ${features} features`\n : `There are ${breakings} BREAKING CHANGES and ${features} features`,\n };\n};\n","import type { CommitTransformFunction, Context } from 'conventional-changelog-writer';\nimport { CommitConventionalType, Commit } from './data.js';\nimport { GitmojiCode } from './gitmoji.js';\n\nexport type Language = 'en-US';\n\nexport interface TransformConfig {\n scopeDisplayName?: Record<string, string>;\n displayTypes?: CommitConventionalType[];\n displayScopes?: string[];\n showAuthor?: boolean;\n withEmoji?: boolean;\n language?: Language;\n}\n\nexport function displayScope(scope: string | null | undefined, scopeDisplayNameMap: Record<string, string>) {\n return scope == null || scope.length === 0\n ? scopeDisplayNameMap['*']\n : scopeDisplayNameMap[scope] == null\n ? scope\n : scopeDisplayNameMap[scope];\n}\n\nexport function displayType(type: string, options: displayType.Options = {}): string {\n const { withEmoji = true, language = 'en-US' } = options;\n\n if (CommitConventionalType.hasInstance(type)) {\n const { emoji, [language]: title } = CommitConventionalType.getData(type);\n return `${withEmoji ? `${emoji} ` : ''}${title}`;\n }\n\n return type;\n}\nexport namespace displayType {\n export interface Options {\n readonly withEmoji?: boolean | undefined;\n readonly language?: Language;\n }\n}\n\nexport function createTransform(config: TransformConfig): CommitTransformFunction<Commit> {\n const displayTypes = new Set(config.displayTypes == null ? CommitConventionalType.values() : config.displayTypes);\n const ignoreType = (type: string | undefined) => type == null || !displayTypes.has(type as CommitConventionalType);\n const ignoreScope = (scope: string | undefined | null) =>\n config.displayScopes == null ? false : scope != null && !config.displayScopes.includes(scope);\n\n const transform = (commit: Commit, { repository, host, owner, repoUrl }: Context): Commit | false => {\n const discard = commit.notes.length === 0;\n const issues = new Set<string>();\n const notes = commit.notes.map((note) => ({\n ...note,\n title: `${config.withEmoji === false ? '' : '💥 '}BREAKING CHANGES`,\n }));\n const conventionalType =\n commit.type == null\n ? undefined\n : (CommitConventionalType.parse(commit.type) ??\n (GitmojiCode.isValid(commit.type) ? GitmojiCode.toConventionalCommitType(commit.type) : undefined));\n\n if (ignoreType(conventionalType) && discard) return false;\n\n const type =\n conventionalType == null\n ? null\n : displayType(conventionalType, {\n withEmoji: config.withEmoji,\n });\n\n if (ignoreScope(commit.scope)) return false;\n\n const scopeIntermediate = commit.scope === '*' ? '' : commit.scope;\n const scope =\n config.scopeDisplayName == null ? null : (displayScope(scopeIntermediate, config.scopeDisplayName) ?? null);\n const hash = typeof commit.hash === 'string' ? commit.hash.slice(0, 7) : commit.hash;\n\n const subject =\n typeof commit.subject === 'string'\n ? (() => {\n let returnValue = commit.subject;\n const url = repository == null ? repoUrl : [host, owner, repository].filter(Boolean).join('/');\n if (url != null) {\n const issueURL = `${url}/issues/`;\n // Issue URLs.\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n returnValue = returnValue.replace(/#(\\d+)/g, (_, issue: string) => {\n issues.add(issue);\n\n return `[#${issue}](${issueURL}${issue})`;\n });\n }\n if (host != null) {\n // User URLs.\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n returnValue = returnValue.replace(/\\B@([\\da-z](?:-?[\\d/a-z]){0,38})/g, (_, username: string) =>\n username.includes('/') ? `@${username}` : `[@${username}](${host}/${username})`,\n );\n }\n return returnValue;\n })()\n : commit.subject;\n\n // Remove references that already appear in the subject\n const references = commit.references.filter((reference) => !issues.has(reference.issue));\n\n // eslint-disable-next-line ts/consistent-type-assertions\n return {\n ...commit,\n type,\n hash,\n scope,\n subject,\n references,\n header: commit.header,\n body: commit.body,\n footer: commit.footer,\n merge: commit.merge,\n revert: commit.revert,\n notes,\n mentions: commit.mentions,\n } as Commit;\n };\n\n return transform as unknown as CommitTransformFunction<Commit>;\n}\n","import { readFileSync } from 'node:fs';\nimport nodePath from 'node:path';\nimport type { Options } from 'conventional-changelog-writer';\nimport { fileURLToPath } from 'node:url';\nimport { createTransform } from './transform.js';\nimport { Commit, CommitConventionalType } from './data.js';\n\nexport interface WriterOptions extends Options<Commit> {}\n\nconst _dirname = typeof __dirname === 'undefined' ? nodePath.dirname(fileURLToPath(import.meta.url)) : __dirname;\nconst basePath = nodePath.resolve(nodePath.dirname(_dirname), './template');\n\nexport const defaultDisplayTypes = CommitConventionalType.findWhere((_) => _.changelog);\n\nexport const createWriterOpts = async (): Promise<WriterOptions> => {\n const mainTemplate = readFileSync(`${basePath}/template.hbs`, 'utf8');\n const headerPartial = readFileSync(`${basePath}/header.hbs`, 'utf8');\n const commitPartial = readFileSync(`${basePath}/commit.hbs`, 'utf8');\n const footerPartial = readFileSync(`${basePath}/footer.hbs`, 'utf8');\n const author = readFileSync(`${basePath}/author.hbs`, 'utf8');\n\n return {\n transform: createTransform({\n displayTypes: defaultDisplayTypes,\n }),\n groupBy: 'type',\n commitGroupsSort: 'title',\n // @ts-ignore\n commitsSort: ['scope', 'subject'],\n noteGroupsSort: 'title',\n mainTemplate,\n headerPartial,\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n commitPartial: commitPartial.replace(/{{gitUserInfo}}/g, author),\n footerPartial,\n };\n};\n","import { gitRawCommitOpts } from './git-raw-commit-opts.js';\nimport { createParserOpts } from './parser.js';\nimport { whatBump } from './whatBump.js';\nimport { createWriterOpts } from './writer.js';\n\nexport { Emoji, GitmojiCode } from './gitmoji.js';\n\nexport default async function createPreset() {\n return {\n gitRawCommitOpts,\n parser: createParserOpts(),\n writer: await createWriterOpts(),\n whatBump,\n };\n}\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/meta.ts","../src/gitmoji.ts","../src/git-raw-commit-opts.ts","../src/parser.ts","../src/data.ts","../src/whatBump.ts","../src/transform.ts","../src/writer.ts","../src/createPreset.ts"],"sourcesContent":["export const meta = Object.freeze({\n // @ts-ignore - these variables are injected at build time\n name: (typeof __PACKAGE_NAME__ === 'undefined' ? '' : __PACKAGE_NAME__) as string,\n // @ts-ignore - these variables are injected at build time\n version: (typeof __PACKAGE_VERSION__ === 'undefined' ? '' : __PACKAGE_VERSION__) as string,\n // @ts-ignore - these variables are injected at build time\n buildNumber: 1 as number, // (typeof __PACKAGE_BUILD_NUMBER__ === 'undefined' ? 0 : __PACKAGE_BUILD_NUMBER__) as number,\n});\n","/* eslint-disable unicorn/prefer-spread */\nimport emojiRegexp from 'emoji-regex';\nimport { type Gitmoji, gitmojis } from 'gitmojis';\nimport type { CommitConventionalType } from './data.js';\n\nexport type Emoji = Emoji.Unicode | Emoji.Text;\nexport namespace Emoji {\n export const reEmojiUnicode = emojiRegexp();\n\n export const reEmojiText = /:\\w*:/;\n\n const reMatchOnly = (input: RegExp) => new RegExp(`^${input.source}$`, '');\n const _reEmojiUnicode = reMatchOnly(reEmojiUnicode);\n const _reEmojiText = reMatchOnly(reEmojiText);\n\n export type Unicode = string & { '@@EmojiStyle': 'unicode' };\n export type Text = string & { '@@EmojiStyle': 'text' };\n\n export function isUnicode(anyValue: string): anyValue is Unicode {\n return _reEmojiUnicode.test(anyValue);\n }\n\n export function isText(anyValue: string): anyValue is Text {\n return _reEmojiText.test(anyValue);\n }\n\n export function hasInstance(anyValue: string): anyValue is Emoji {\n return isText(anyValue) || isUnicode(anyValue);\n }\n}\n\nexport type GitmojiCode = Emoji & { '@@Gitmoji': true };\nexport namespace GitmojiCode {\n export type Unicode = Emoji.Unicode & { '@@Gitmoji': true };\n export type Emoji = Emoji.Text & { '@@Gitmoji': true };\n\n // export const reEmoji = emojiRegexp();\n\n const allGitmojiCodes = new Set(\n gitmojis\n .map((gitmoji) => gitmoji.code as GitmojiCode)\n .concat(gitmojis.map((gitmoji) => gitmoji.emoji as GitmojiCode)),\n );\n const index = {\n // code: createIndex(gitmojis, 'code'),\n emoji: createIndex(gitmojis, 'emoji'),\n };\n\n function createIndex<K extends keyof Gitmoji>(list: readonly Gitmoji[], key: K): ReadonlyMap<Gitmoji[K], Gitmoji> {\n return new Map(list.map((gitmoji) => [gitmoji[key], gitmoji]));\n }\n\n export function isValid(anyValue: string): anyValue is GitmojiCode {\n return allGitmojiCodes.has(anyValue as GitmojiCode);\n }\n\n const defaultType = 'chore';\n const conversionMap: ReadonlyMap<GitmojiCode, CommitConventionalType> = (() => {\n const data: Record<CommitConventionalType, GitmojiCode.Unicode[]> = {\n feat: ['✨', '♿️', '🚸'] as GitmojiCode.Unicode[],\n fix: ['🐛'] as GitmojiCode.Unicode[],\n docs: ['📝'] as GitmojiCode.Unicode[],\n style: ['🎨', '🚨'] as GitmojiCode.Unicode[],\n refactor: ['♻️', '🏗️'] as GitmojiCode.Unicode[],\n test: ['✅', '🧪'] as GitmojiCode.Unicode[],\n perf: ['⚡️'] as GitmojiCode.Unicode[],\n revert: ['⏪️'] as GitmojiCode.Unicode[],\n ci: ['👷', '💚'] as GitmojiCode.Unicode[],\n wip: ['🚧'] as GitmojiCode.Unicode[],\n build: [] as GitmojiCode.Unicode[],\n chore: ['🔧'] as GitmojiCode.Unicode[],\n };\n\n const entries = Array.from<[CommitConventionalType, GitmojiCode.Unicode[]]>(\n // @ts-ignore entries are not well typed\n Object.entries(data),\n );\n return new Map(\n entries.reduce<Array<[GitmojiCode, CommitConventionalType]>>(\n (acc, [commitType, gitmojiUnicodeArray]) =>\n acc\n .concat(gitmojiUnicodeArray.map((gitmojiUnicode) => [gitmojiUnicode, commitType]))\n\n .concat(\n gitmojiUnicodeArray.map((gitmojiUnicode) => [\n // eslint-disable-next-line ts/no-non-null-assertion, ts/no-non-null-asserted-optional-chain\n index.emoji.get(gitmojiUnicode)?.code! as GitmojiCode,\n commitType,\n ]),\n ),\n [],\n ),\n );\n })();\n\n export function toConventionalCommitType(gitmoji: GitmojiCode): CommitConventionalType {\n return conversionMap.get(gitmoji) ?? defaultType;\n }\n}\n","export const gitRawCommitOpts = {\n format: '%B%n-hash-%n%H%n-gitTags-%n%d%n-committerDate-%n%ci%n-authorName-%n%an%n-authorEmail-%n%ae',\n};\n","import type { Options as ParserOptionsDefault } from 'conventional-commits-parser';\n\nexport interface ParserOptions extends ParserOptionsDefault {}\n\nexport const createParserOpts = (): ParserOptions => ({\n headerPattern: new RegExp(\n // Type\n // eslint-disable-next-line unicorn/prefer-string-raw\n `^(?<type>\\\\S*)? ` +\n // Scope\n // eslint-disable-next-line unicorn/prefer-string-raw\n `(?:\\\\((?<scope>.*)\\\\):? )?` +\n // Subject\n `(?<subject>.*)$`,\n 'u',\n ),\n headerCorrespondence: ['type', 'scope', 'subject'],\n revertPattern: /^(?:revert|revert:)\\s\"?([\\S\\s]+?)\"?\\s*this reverts commit (\\w*)\\./i,\n noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES'],\n // revertPattern: /revert:\\s([\\S\\s]*?)\\s*this reverts commit (\\w*)\\./i,\n revertCorrespondence: [`header`, `hash`],\n});\n","import type { Commit as CommitDefault } from 'conventional-commits-parser';\n\nexport type Commit = CommitDefault & {\n type: string | null;\n subject: string | null;\n scope: string | null;\n hash: string | null;\n};\n\nexport type CommitConventionalType =\n | 'build'\n | 'ci'\n | 'docs'\n | 'feat'\n | 'fix'\n | 'perf'\n | 'refactor'\n | 'revert'\n | 'style'\n | 'test'\n | 'wip'\n | 'chore';\n\nexport const CommitConventionalType = (() => {\n const enumObject = Object.freeze({\n Build: 'build',\n CI: 'ci',\n Docs: 'docs',\n Feat: 'feat',\n Fix: 'fix',\n Perf: 'perf',\n Refactor: 'refactor',\n Revert: 'revert',\n Style: 'style',\n Test: 'test',\n WIP: 'wip',\n Chore: 'chore',\n });\n // eslint-disable-next-line unicorn/no-array-sort\n const enumValues: readonly CommitConventionalType[] = Object.freeze(Object.values(enumObject).sort());\n const enumValuesSet = new Set(enumValues);\n\n const typeData: Record<CommitConventionalType, CommitConventionalTypeData> = {\n feat: {\n 'emoji': '✨',\n 'en-US': 'Features',\n 'changelog': true,\n },\n fix: {\n 'emoji': '🐛',\n 'en-US': 'Bug Fixes',\n 'changelog': true,\n },\n build: {\n 'emoji': '👷',\n 'en-US': 'Build System',\n 'changelog': false,\n },\n chore: {\n 'emoji': '🎫',\n 'en-US': 'Chores',\n 'changelog': false,\n },\n ci: {\n 'emoji': '🔧',\n 'en-US': 'Continuous Integration',\n 'changelog': false,\n },\n docs: {\n 'emoji': '📝',\n 'en-US': 'Documentation',\n 'changelog': false,\n },\n test: {\n 'emoji': '✅',\n 'en-US': 'Tests',\n 'changelog': false,\n },\n perf: {\n 'emoji': '⚡',\n 'en-US': 'Performance Improvements',\n 'changelog': true,\n },\n refactor: {\n 'emoji': '♻',\n 'en-US': 'Code Refactoring',\n 'changelog': false,\n },\n revert: {\n 'emoji': '⏪',\n 'en-US': 'Reverts',\n 'changelog': true,\n },\n style: {\n 'emoji': '💄',\n 'en-US': 'Styles',\n 'changelog': false,\n },\n wip: {\n 'emoji': '🚧',\n 'en-US': 'Work in progress',\n 'changelog': false,\n },\n };\n\n function hasInstance(anyValue: unknown): anyValue is CommitConventionalType {\n return typeof anyValue === 'string' && enumValuesSet.has(anyValue as unknown as CommitConventionalType);\n }\n\n function getData(commitType: CommitConventionalType): CommitConventionalTypeData {\n return typeData[commitType];\n }\n\n function parse(anyValue: string): CommitConventionalType | undefined {\n return hasInstance(anyValue) ? anyValue : undefined;\n }\n\n function values() {\n return enumValues;\n }\n\n function findWhere(predicate: (data: CommitConventionalTypeData) => boolean): CommitConventionalType[] {\n return enumValues.filter((enumValue) => predicate(getData(enumValue)));\n }\n\n return { ...enumObject, hasInstance, getData, values, parse, findWhere };\n})();\n\nexport interface CommitConventionalTypeData {\n 'emoji': string;\n 'en-US': string;\n 'changelog': boolean;\n}\n","import type { Commit as CommitBase } from 'conventional-commits-parser';\nimport { CommitConventionalType } from './data.js';\nimport { GitmojiCode } from './gitmoji.js';\n\nfunction toConventionalCommitType(text: string) {\n return GitmojiCode.isValid(text)\n ? GitmojiCode.toConventionalCommitType(text)\n : CommitConventionalType.hasInstance(text)\n ? text\n : undefined;\n}\n\nexport type Commit = CommitBase;\n\nexport const whatBump = (commits: ReadonlyArray<Commit>) => {\n let level = 2;\n let breakings = 0;\n let features = 0;\n\n for (const { type, notes } of commits) {\n const conventionalType = type == null ? type : toConventionalCommitType(type);\n if (notes.length > 0) {\n breakings += notes.length;\n level = 0;\n } else if (conventionalType === CommitConventionalType.Feat) {\n features += 1;\n if (level === 2) {\n level = 1;\n }\n }\n }\n\n return {\n level,\n reason:\n breakings === 1\n ? `There is ${breakings} BREAKING CHANGE and ${features} features`\n : `There are ${breakings} BREAKING CHANGES and ${features} features`,\n };\n};\n","import type { CommitTransformFunction, Context } from 'conventional-changelog-writer';\nimport { CommitConventionalType, Commit } from './data.js';\nimport { GitmojiCode } from './gitmoji.js';\n\nexport type Language = 'en-US';\n\nexport interface TransformConfig {\n scopeDisplayName?: Record<string, string>;\n displayTypes?: CommitConventionalType[];\n displayScopes?: string[];\n showAuthor?: boolean;\n withEmoji?: boolean;\n language?: Language;\n}\n\nexport function displayScope(scope: string | null | undefined, scopeDisplayNameMap: Record<string, string>) {\n return scope == null || scope.length === 0\n ? scopeDisplayNameMap['*']\n : scopeDisplayNameMap[scope] == null\n ? scope\n : scopeDisplayNameMap[scope];\n}\n\nexport function displayType(type: string, options: displayType.Options = {}): string {\n const { withEmoji = true, language = 'en-US' } = options;\n\n if (CommitConventionalType.hasInstance(type)) {\n const { emoji, [language]: title } = CommitConventionalType.getData(type);\n return `${withEmoji ? `${emoji} ` : ''}${title}`;\n }\n\n return type;\n}\nexport namespace displayType {\n export interface Options {\n readonly withEmoji?: boolean | undefined;\n readonly language?: Language;\n }\n}\n\nexport function createTransform(config: TransformConfig): CommitTransformFunction<Commit> {\n const displayTypes = new Set(config.displayTypes == null ? CommitConventionalType.values() : config.displayTypes);\n const ignoreType = (type: string | undefined) => type == null || !displayTypes.has(type as CommitConventionalType);\n const ignoreScope = (scope: string | undefined | null) =>\n config.displayScopes == null ? false : scope != null && !config.displayScopes.includes(scope);\n\n const transform = (commit: Commit, { repository, host, owner, repoUrl }: Context): Commit | false => {\n const discard = commit.notes.length === 0;\n const issues = new Set<string>();\n const notes = commit.notes.map((note) => ({\n ...note,\n title: `${config.withEmoji === false ? '' : '💥 '}BREAKING CHANGES`,\n }));\n const conventionalType =\n commit.type == null\n ? undefined\n : (CommitConventionalType.parse(commit.type) ??\n (GitmojiCode.isValid(commit.type) ? GitmojiCode.toConventionalCommitType(commit.type) : undefined));\n\n if (ignoreType(conventionalType) && discard) return false;\n\n const type =\n conventionalType == null\n ? null\n : displayType(conventionalType, {\n withEmoji: config.withEmoji,\n });\n\n if (ignoreScope(commit.scope)) return false;\n\n const scopeIntermediate = commit.scope === '*' ? '' : commit.scope;\n const scope =\n config.scopeDisplayName == null ? null : (displayScope(scopeIntermediate, config.scopeDisplayName) ?? null);\n const hash = typeof commit.hash === 'string' ? commit.hash.slice(0, 7) : commit.hash;\n\n const subject =\n typeof commit.subject === 'string'\n ? (() => {\n let returnValue = commit.subject;\n const url = repository == null ? repoUrl : [host, owner, repository].filter(Boolean).join('/');\n if (url != null) {\n const issueURL = `${url}/issues/`;\n // Issue URLs.\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n returnValue = returnValue.replace(/#(\\d+)/g, (_, issue: string) => {\n issues.add(issue);\n\n return `[#${issue}](${issueURL}${issue})`;\n });\n }\n if (host != null) {\n // User URLs.\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n returnValue = returnValue.replace(/\\B@([\\da-z](?:-?[\\d/a-z]){0,38})/g, (_, username: string) =>\n username.includes('/') ? `@${username}` : `[@${username}](${host}/${username})`,\n );\n }\n return returnValue;\n })()\n : commit.subject;\n\n // Remove references that already appear in the subject\n const references = commit.references.filter((reference) => !issues.has(reference.issue));\n\n // eslint-disable-next-line ts/consistent-type-assertions\n return {\n ...commit,\n type,\n hash,\n scope,\n subject,\n references,\n header: commit.header,\n body: commit.body,\n footer: commit.footer,\n merge: commit.merge,\n revert: commit.revert,\n notes,\n mentions: commit.mentions,\n } as Commit;\n };\n\n return transform as unknown as CommitTransformFunction<Commit>;\n}\n","import { readFileSync } from 'node:fs';\nimport nodePath from 'node:path';\nimport type { Options } from 'conventional-changelog-writer';\nimport { fileURLToPath } from 'node:url';\nimport { createTransform } from './transform.js';\nimport { Commit, CommitConventionalType } from './data.js';\n\nexport interface WriterOptions extends Options<Commit> {}\n\nconst _dirname = typeof __dirname === 'undefined' ? nodePath.dirname(fileURLToPath(import.meta.url)) : __dirname;\nconst basePath = nodePath.resolve(nodePath.dirname(_dirname), './template');\n\nexport const defaultDisplayTypes = CommitConventionalType.findWhere((_) => _.changelog);\n\nexport const createWriterOpts = async (): Promise<WriterOptions> => {\n const mainTemplate = readFileSync(`${basePath}/template.hbs`, 'utf8');\n const headerPartial = readFileSync(`${basePath}/header.hbs`, 'utf8');\n const commitPartial = readFileSync(`${basePath}/commit.hbs`, 'utf8');\n const footerPartial = readFileSync(`${basePath}/footer.hbs`, 'utf8');\n const author = readFileSync(`${basePath}/author.hbs`, 'utf8');\n\n return {\n transform: createTransform({\n displayTypes: defaultDisplayTypes,\n }),\n groupBy: 'type',\n commitGroupsSort: 'title',\n // @ts-ignore FIXME: unknown error\n commitsSort: ['scope', 'subject'],\n noteGroupsSort: 'title',\n mainTemplate,\n headerPartial,\n // eslint-disable-next-line unicorn/prefer-string-replace-all\n commitPartial: commitPartial.replace(/{{gitUserInfo}}/g, author),\n footerPartial,\n };\n};\n","import { gitRawCommitOpts } from './git-raw-commit-opts.js';\nimport { createParserOpts } from './parser.js';\nimport { whatBump } from './whatBump.js';\nimport { createWriterOpts } from './writer.js';\n\nexport { Emoji, GitmojiCode } from './gitmoji.js';\n\nexport async function createPreset() {\n return {\n gitRawCommitOpts,\n parser: createParserOpts(),\n writer: await createWriterOpts(),\n whatBump,\n };\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/conventional-changelog",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Conventional changelog plugin for @w5s",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/w5s/project-config/blob/main/packages/conventional-changelog#readme",
|
|
@@ -35,38 +35,13 @@
|
|
|
35
35
|
"!**/__tests__/**"
|
|
36
36
|
],
|
|
37
37
|
"scripts": {
|
|
38
|
-
"
|
|
39
|
-
"build:tsc": "npx tsup",
|
|
40
|
-
"clean": "npx run-p \"clean:*\"",
|
|
41
|
-
"clean:tsc": "rm -rf dist",
|
|
42
|
-
"docs": "node ../../markdown.mjs",
|
|
43
|
-
"format": "npx run-p \"format:*\"",
|
|
44
|
-
"format:src": "eslint . --fix",
|
|
45
|
-
"lint": "npx run-p \"lint:*\"",
|
|
46
|
-
"lint:src": "eslint .",
|
|
47
|
-
"postpack": "npx clean-package restore",
|
|
48
|
-
"prepack": "npx clean-package",
|
|
49
|
-
"prepare": "npx run-p \"prepare:*\"",
|
|
50
|
-
"prepare:empty": ":",
|
|
51
|
-
"prepublishOnly": "npm run clean;npm run build",
|
|
52
|
-
"spellcheck": "cspell --no-progress '**'",
|
|
53
|
-
"test": "npx run-p \"test:*\"",
|
|
54
|
-
"test:src": "vitest run"
|
|
38
|
+
"postpack": "clean-package restore"
|
|
55
39
|
},
|
|
56
40
|
"dependencies": {
|
|
57
41
|
"@commitlint/types": "^20.0.0",
|
|
58
42
|
"emoji-regex": "^10.2.1",
|
|
59
43
|
"gitmojis": "^3.13.4"
|
|
60
44
|
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@types/conventional-changelog-writer": "4.0.11",
|
|
63
|
-
"@types/conventional-commits-parser": "5.0.2",
|
|
64
|
-
"@w5s/tsup-config": "2.0.4",
|
|
65
|
-
"tsup": "8.5.1",
|
|
66
|
-
"vite": "7.3.1",
|
|
67
|
-
"vitest": "4.0.18"
|
|
68
|
-
},
|
|
69
|
-
"clean-package": "../../clean-package.config.mjs",
|
|
70
45
|
"engines": {
|
|
71
46
|
"node": ">=20.0.0"
|
|
72
47
|
},
|
|
@@ -74,5 +49,5 @@
|
|
|
74
49
|
"access": "public"
|
|
75
50
|
},
|
|
76
51
|
"sideEffect": false,
|
|
77
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8d96574cd89109fa8268a2c77601337ad871ef1e"
|
|
78
53
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { gitRawCommitOpts } from './git-raw-commit-opts.js';
|
|
2
|
+
import { createParserOpts } from './parser.js';
|
|
3
|
+
import { whatBump } from './whatBump.js';
|
|
4
|
+
import { createWriterOpts } from './writer.js';
|
|
5
|
+
|
|
6
|
+
export { Emoji, GitmojiCode } from './gitmoji.js';
|
|
7
|
+
|
|
8
|
+
export async function createPreset() {
|
|
9
|
+
return {
|
|
10
|
+
gitRawCommitOpts,
|
|
11
|
+
parser: createParserOpts(),
|
|
12
|
+
writer: await createWriterOpts(),
|
|
13
|
+
whatBump,
|
|
14
|
+
};
|
|
15
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { createParserOpts } from './parser.js';
|
|
3
|
-
import { whatBump } from './whatBump.js';
|
|
4
|
-
import { createWriterOpts } from './writer.js';
|
|
5
|
-
|
|
1
|
+
export * from './meta.js';
|
|
6
2
|
export { Emoji, GitmojiCode } from './gitmoji.js';
|
|
7
|
-
|
|
8
|
-
export default async function createPreset() {
|
|
9
|
-
return {
|
|
10
|
-
gitRawCommitOpts,
|
|
11
|
-
parser: createParserOpts(),
|
|
12
|
-
writer: await createWriterOpts(),
|
|
13
|
-
whatBump,
|
|
14
|
-
};
|
|
15
|
-
}
|
|
3
|
+
export { createPreset as default } from './createPreset.js';
|
package/src/meta.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const meta = Object.freeze({
|
|
2
|
+
// @ts-ignore - these variables are injected at build time
|
|
3
|
+
name: (typeof __PACKAGE_NAME__ === 'undefined' ? '' : __PACKAGE_NAME__) as string,
|
|
4
|
+
// @ts-ignore - these variables are injected at build time
|
|
5
|
+
version: (typeof __PACKAGE_VERSION__ === 'undefined' ? '' : __PACKAGE_VERSION__) as string,
|
|
6
|
+
// @ts-ignore - these variables are injected at build time
|
|
7
|
+
buildNumber: 1 as number, // (typeof __PACKAGE_BUILD_NUMBER__ === 'undefined' ? 0 : __PACKAGE_BUILD_NUMBER__) as number,
|
|
8
|
+
});
|
package/src/parser.ts
CHANGED
package/src/writer.ts
CHANGED
|
@@ -25,7 +25,7 @@ export const createWriterOpts = async (): Promise<WriterOptions> => {
|
|
|
25
25
|
}),
|
|
26
26
|
groupBy: 'type',
|
|
27
27
|
commitGroupsSort: 'title',
|
|
28
|
-
// @ts-ignore
|
|
28
|
+
// @ts-ignore FIXME: unknown error
|
|
29
29
|
commitsSort: ['scope', 'subject'],
|
|
30
30
|
noteGroupsSort: 'title',
|
|
31
31
|
mainTemplate,
|