From f357d17831b10a54c7a48437afeeb3d9ef158d53 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Fri, 11 Apr 2025 14:26:48 +0200 Subject: [PATCH] gateway: add packageDocumentation comment Signed-off-by: Vincenzo Scamporlino --- plugins/gateway-backend/report.api.md | 2 -- plugins/gateway-backend/src/index.ts | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/plugins/gateway-backend/report.api.md b/plugins/gateway-backend/report.api.md index c9c23ab29d..17ccd52094 100644 --- a/plugins/gateway-backend/report.api.md +++ b/plugins/gateway-backend/report.api.md @@ -8,6 +8,4 @@ import { BackendFeature } from '@backstage/backend-plugin-api'; // @public const gatewayPlugin: BackendFeature; export default gatewayPlugin; - -// (No @packageDocumentation comment for this package) ``` diff --git a/plugins/gateway-backend/src/index.ts b/plugins/gateway-backend/src/index.ts index 10d01d5f19..dd688dce4c 100644 --- a/plugins/gateway-backend/src/index.ts +++ b/plugins/gateway-backend/src/index.ts @@ -13,4 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + +/** + * A plugin for managing request routing in distributed Backstage deployments. + * + * @packageDocumentation + */ + export { gatewayPlugin as default } from './plugin';