Skip to content

Commit b6a1fcc

Browse files
committed
fix: logging
1 parent 4dd17d0 commit b6a1fcc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/cli/commands/version.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ export default declareCommand({
9696
edits.push(
9797
...workspace.packages
9898
.filter(
99-
(pkg) =>
100-
!isPreRelease(pkg.version) && !!options.original?.[pkg.name],
99+
(pkg) => !isPreRelease(pkg.version) && !!options.original?.[pkg.name],
101100
)
102101
.map((pkg) => ({
103102
path: ["original", pkg.name],
@@ -121,6 +120,6 @@ export default declareCommand({
121120
);
122121
}
123122

124-
logger.info("Finished!");
123+
logger.info("Versioning is finished!");
125124
},
126125
});

0 commit comments

Comments
 (0)