@soybeanjs/changelog 0.3.11 → 0.3.13-beta.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/dist/index.cjs +4 -3
- package/dist/index.js +2 -1
- package/package.json +9 -9
package/dist/index.cjs
CHANGED
|
@@ -30,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
30
|
));
|
|
31
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
32
|
|
|
33
|
-
// node_modules/.pnpm/tsup@8.0.
|
|
33
|
+
// node_modules/.pnpm/tsup@8.0.2_typescript@5.3.3/node_modules/tsup/assets/cjs_shims.js
|
|
34
34
|
var init_cjs_shims = __esm({
|
|
35
|
-
"node_modules/.pnpm/tsup@8.0.
|
|
35
|
+
"node_modules/.pnpm/tsup@8.0.2_typescript@5.3.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
}
|
|
38
38
|
});
|
|
@@ -2494,7 +2494,8 @@ ${md}
|
|
|
2494
2494
|
async function getChangelogMarkdown(options, showTitle = true) {
|
|
2495
2495
|
const opts = await createOptions(options);
|
|
2496
2496
|
const gitCommits = await getGitCommits(opts.from, opts.to);
|
|
2497
|
-
const
|
|
2497
|
+
const resolvedLogins = /* @__PURE__ */ new Map();
|
|
2498
|
+
const { commits, contributors } = await getGitCommitsAndResolvedAuthors(gitCommits, opts.github, resolvedLogins);
|
|
2498
2499
|
const markdown = generateMarkdown({ commits, options: opts, showTitle, contributors });
|
|
2499
2500
|
return {
|
|
2500
2501
|
markdown,
|
package/dist/index.js
CHANGED
|
@@ -557,7 +557,8 @@ ${md}
|
|
|
557
557
|
async function getChangelogMarkdown(options, showTitle = true) {
|
|
558
558
|
const opts = await createOptions(options);
|
|
559
559
|
const gitCommits = await getGitCommits(opts.from, opts.to);
|
|
560
|
-
const
|
|
560
|
+
const resolvedLogins = /* @__PURE__ */ new Map();
|
|
561
|
+
const { commits, contributors } = await getGitCommitsAndResolvedAuthors(gitCommits, opts.github, resolvedLogins);
|
|
561
562
|
const markdown = generateMarkdown({ commits, options: opts, showTitle, contributors });
|
|
562
563
|
return {
|
|
563
564
|
markdown,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/changelog",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.13-beta.0",
|
|
5
5
|
"packageManager": "pnpm@8.14.1",
|
|
6
6
|
"description": "generate changelog form git tags and commits for github",
|
|
7
7
|
"author": {
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"node": ">=14"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@soybeanjs/eslint-config": "^1.
|
|
41
|
+
"@soybeanjs/eslint-config": "^1.2.3",
|
|
42
42
|
"cli-progress": "3.12.0",
|
|
43
|
-
"convert-gitmoji": "0.1.
|
|
43
|
+
"convert-gitmoji": "0.1.5",
|
|
44
44
|
"dayjs": "1.11.10",
|
|
45
45
|
"execa": "8.0.1",
|
|
46
46
|
"ofetch": "1.3.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@soybeanjs/cli": "1.0.
|
|
49
|
+
"@soybeanjs/cli": "1.0.7",
|
|
50
50
|
"@types/cli-progress": "3.11.5",
|
|
51
|
-
"@types/node": "20.11.
|
|
52
|
-
"eslint": "8.
|
|
53
|
-
"lint-staged": "15.2.
|
|
51
|
+
"@types/node": "20.11.24",
|
|
52
|
+
"eslint": "8.57.0",
|
|
53
|
+
"lint-staged": "15.2.2",
|
|
54
54
|
"simple-git-hooks": "2.9.0",
|
|
55
|
-
"tsup": "^8.0.
|
|
56
|
-
"tsx": "4.7.
|
|
55
|
+
"tsup": "^8.0.2",
|
|
56
|
+
"tsx": "4.7.1",
|
|
57
57
|
"typescript": "5.3.3"
|
|
58
58
|
},
|
|
59
59
|
"simple-git-hooks": {
|