Bläddra i källkod

Antora remove unnecessary logging

Rob Winch 3 år sedan
förälder
incheckning
939a5581f2
1 ändrade filer med 0 tillägg och 2 borttagningar
  1. 0 2
      docs/antora/extensions/version-fix.js

+ 0 - 2
docs/antora/extensions/version-fix.js

@@ -5,7 +5,6 @@
 module.exports.register = (pipeline, { config }) => {
 
     pipeline.on('contentAggregated', ({ contentAggregate }) => {
-        console.log("version-fix.js")
         contentAggregate.forEach(aggregate => {
             if (aggregate.name === "" && aggregate.displayVersion === 5.6) {
                 aggregate.name = "ROOT";
@@ -14,7 +13,6 @@ module.exports.register = (pipeline, { config }) => {
                 aggregate.displayVersion = `${aggregate.version}`
                 delete aggregate.prerelease
             }
-            out(aggregate);
         })
     })
 }