From 6fbdcdd5c7cf6f6a34ed7431f8f09ab4064e6016 Mon Sep 17 00:00:00 2001 From: blam Date: Thu, 13 Jan 2022 10:33:10 +0100 Subject: [PATCH] chore: remove the rest Signed-off-by: blam --- packages/backend/package.json | 1 - packages/backend/src/plugins/azure-devops.ts | 26 -------------------- 2 files changed, 27 deletions(-) delete mode 100644 packages/backend/src/plugins/azure-devops.ts diff --git a/packages/backend/package.json b/packages/backend/package.json index f204659789..626b496509 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -32,7 +32,6 @@ "@backstage/integration": "^0.7.0", "@backstage/plugin-app-backend": "^0.3.21", "@backstage/plugin-auth-backend": "^0.6.0", - "@backstage/plugin-azure-devops-backend": "^0.2.6", "@backstage/plugin-badges-backend": "^0.1.14", "@backstage/plugin-catalog-backend": "^0.19.4", "@backstage/plugin-code-coverage-backend": "^0.1.18", diff --git a/packages/backend/src/plugins/azure-devops.ts b/packages/backend/src/plugins/azure-devops.ts deleted file mode 100644 index 4120e655ed..0000000000 --- a/packages/backend/src/plugins/azure-devops.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2020 The Backstage Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { createRouter } from '@backstage/plugin-azure-devops-backend'; -import { Router } from 'express'; -import type { PluginEnvironment } from '../types'; - -export default function createPlugin({ - logger, - config, -}: PluginEnvironment): Promise { - return createRouter({ logger, config }); -}