Skip to content

Commit eb871a4

Browse files
authored
remove debug entrypoints
1 parent e123edd commit eb871a4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scripts/version.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ async function latest(repo) {
2929
const tagsRaw = await repo.git.raw(['tag', '--sort=-v:refname']);
3030
const allTags = tagsRaw.split('\n').filter(Boolean).slice(0, MAX_TAGS_LIMIT);
3131

32-
console.log('allTags:\n', allTags);
33-
3432
for (let tag of allTags) {
3533
const res = repo.filter(tag);
3634
if (res !== null) {
@@ -54,9 +52,6 @@ async function main() {
5452
let { version: srcVer } = await latest(src);
5553
let { version: dstVer } = await latest(dst);
5654

57-
console.log('srcVer:', srcVer);
58-
console.log('dstVer:', dstVer);
59-
6055
if (!dstVer || semver.gt(srcVer, dstVer)) {
6156
console.log(srcVer);
6257
} else {

0 commit comments

Comments
 (0)