Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit ae0403f

Browse files
committed
fixup! chore: Automate adding clog to manifest
1 parent 875512e commit ae0403f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/add_clog_to_manifest.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const appendClogManifest = (version: string): void => {
4646
);
4747

4848
if (clogIdx < 0) {
49-
console.error("Failed to parse manifest.json");
49+
console.error("failed to parse manifest.json");
5050
process.exit(1);
5151
}
5252

@@ -66,7 +66,7 @@ const appendClogManifest = (version: string): void => {
6666
versionB === null ||
6767
versionB.length !== 1
6868
) {
69-
console.error("Failed to parse manifest.json");
69+
console.error("failed to parse manifest.json");
7070
process.exit(1);
7171
}
7272
return -semverCompare(versionA[0], versionB[0]);
@@ -88,8 +88,8 @@ const main = () => {
8888
return usage();
8989
}
9090
appendClogManifest(args.version);
91-
console.log("done");
92-
console.log("tip: run yarn fmt:fix to prettify manifest.json");
91+
console.log("Done");
92+
console.info("tip: run yarn fmt:fix to prettify manifest.json");
9393
process.exit(0);
9494
};
9595

0 commit comments

Comments
 (0)