Skip to content

Commit 939a558

Browse files
committed
Antora remove unnecessary logging
1 parent 3c39761 commit 939a558

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/antora/extensions/version-fix.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
module.exports.register = (pipeline, { config }) => {
66

77
pipeline.on('contentAggregated', ({ contentAggregate }) => {
8-
console.log("version-fix.js")
98
contentAggregate.forEach(aggregate => {
109
if (aggregate.name === "" && aggregate.displayVersion === 5.6) {
1110
aggregate.name = "ROOT";
@@ -14,7 +13,6 @@ module.exports.register = (pipeline, { config }) => {
1413
aggregate.displayVersion = `${aggregate.version}`
1514
delete aggregate.prerelease
1615
}
17-
out(aggregate);
1816
})
1917
})
2018
}

0 commit comments

Comments
 (0)