Merge branch 'cut-bug'

main
Yanick Champoux 2023-05-15 09:58:45 -04:00
commit 6cbfd2ed2b
1 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import { simpleGit } from "simple-git";
const code_churn = async (previous_version) => {
previous_version = previous_version
? "v" + previous_version
? "v" + previous_version.version
: "4b825dc642cb6eb9a060e54bf8d69288fbee4904"; // empty tree sha1
return simpleGit().diff(["--shortstat", previous_version, "HEAD"]);
@ -47,7 +47,10 @@ const handler = async (config) => {
});
}
next.version = semverInc(previous_version ?? "0.0.0", bumper);
next.version = semverInc(
previous_version ? previous_version.version : "0.0.0",
bumper
);
if (config.dry) {
config.consola.info("running in dry mode, not saving\n", next);