@soybeanjs/changelog 0.0.5 → 0.0.6
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 +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -561,7 +561,6 @@ async function generateTotalChangelog(options, showProgress = true) {
|
|
|
561
561
|
const markdown = await getTotalChangelogMarkdown(opts, showProgress);
|
|
562
562
|
await writeMarkdown(markdown, opts.output, true);
|
|
563
563
|
}
|
|
564
|
-
getChangelogMarkdown();
|
|
565
564
|
|
|
566
565
|
exports.generateChangelog = generateChangelog;
|
|
567
566
|
exports.generateTotalChangelog = generateTotalChangelog;
|
package/dist/index.mjs
CHANGED
|
@@ -554,6 +554,5 @@ async function generateTotalChangelog(options, showProgress = true) {
|
|
|
554
554
|
const markdown = await getTotalChangelogMarkdown(opts, showProgress);
|
|
555
555
|
await writeMarkdown(markdown, opts.output, true);
|
|
556
556
|
}
|
|
557
|
-
getChangelogMarkdown();
|
|
558
557
|
|
|
559
558
|
export { generateChangelog, generateTotalChangelog, getChangelogMarkdown, getTotalChangelogMarkdown };
|