瀏覽代碼

Remove fix-component-name-display.js

We no longer bring in tags that were broken
Rob Winch 2 年之前
父節點
當前提交
0a5f56e0de
共有 2 個文件被更改,包括 0 次插入24 次删除
  1. 0 1
      antora-playbook.yml
  2. 0 23
      lib/antora/extensions/fix-component-name-display.js

+ 0 - 1
antora-playbook.yml

@@ -6,7 +6,6 @@ antora:
   - require: '@springio/antora-extensions/latest-version-extension'
   - require: '@springio/antora-extensions/inject-collector-cache-config-extension'
   - '@antora/collector-extension'
-  - ./lib/antora/extensions/fix-component-name-display.js
   - '@antora/atlas-extension'
   - require: '@springio/antora-extensions/tabs-migration-extension'
     # uncomment this option to save the migrated content to the worktree

+ 0 - 23
lib/antora/extensions/fix-component-name-display.js

@@ -1,23 +0,0 @@
-'use strict'
-
-/**
- * The purpose of this extension is to fix invalid metadata saved to either antora.yml or gradle.properties in certain
- * tags. This invalid metadata prevents Antora from classifying the component versions properly.
- *
- * This extension addresses with the following cases:
- *
- * . the boolean value on the prerelease key is incorrectly quoted
- * . the prerelease tag is set to true for a GA version
- * . the value of the name key is empty
- * . the value of the displayVersion key doesn't match the actual version
- * . the -SNAPSHOT suffix is appended to the value of the version key instead of the value of the prerelease key
- *
- * This extension should be listed directly after @antora/collector-extension.
- */
-module.exports.register = function () {
-  this.once('contentAggregated', ({ contentAggregate }) => {
-    contentAggregate.forEach((componentVersionBucket) => {
-      Object.assign(componentVersionBucket, { name: 'security', display: 'Spring Security' })
-    })
-  })
-}