diff --git a/plugins/todo-backend/src/schema/openapi/generated/apis/DefaultApi.server.ts b/plugins/todo-backend/src/schema/openapi/generated/apis/DefaultApi.server.ts deleted file mode 100644 index 6054e4d45d..0000000000 --- a/plugins/todo-backend/src/schema/openapi/generated/apis/DefaultApi.server.ts +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** -import type { ListTodos } from '@backstage/plugin-todo-common/client'; - -/** - * no description - */ - -export type EndpointMap = { - '#get|/v1/todos': ListTodos; -}; diff --git a/plugins/todo-backend/src/schema/openapi/generated/apis/index.ts b/plugins/todo-backend/src/schema/openapi/generated/apis/index.ts deleted file mode 100644 index 79855a6fc8..0000000000 --- a/plugins/todo-backend/src/schema/openapi/generated/apis/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from './DefaultApi.server'; diff --git a/plugins/todo-backend/src/schema/openapi/generated/index.ts b/plugins/todo-backend/src/schema/openapi/generated/index.ts deleted file mode 100644 index 69c39313c6..0000000000 --- a/plugins/todo-backend/src/schema/openapi/generated/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from './apis'; -export * from './router'; diff --git a/plugins/todo-backend/src/schema/openapi/index.ts b/plugins/todo-backend/src/schema/openapi/index.ts deleted file mode 100644 index db98243cbf..0000000000 --- a/plugins/todo-backend/src/schema/openapi/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from './generated'; diff --git a/plugins/todo-common/.eslintrc.js b/plugins/todo-common/.eslintrc.js deleted file mode 100644 index e2a53a6ad2..0000000000 --- a/plugins/todo-common/.eslintrc.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); diff --git a/plugins/todo-common/README.md b/plugins/todo-common/README.md deleted file mode 100644 index 542f7e1126..0000000000 --- a/plugins/todo-common/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# backstage-plugin-todo-common - -Welcome to the common package for the todo plugin! - -_This plugin was created through the Backstage CLI_ diff --git a/plugins/todo-common/api-report-client.md b/plugins/todo-common/api-report-client.md deleted file mode 100644 index 5a866133d5..0000000000 --- a/plugins/todo-common/api-report-client.md +++ /dev/null @@ -1,80 +0,0 @@ -## API Report File for "@backstage/plugin-todo-common" - -> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). - -```ts -// @public -export class DefaultApiClient { - constructor(options: { - discoveryApi: { - getBaseUrl(pluginId: string): Promise; - }; - fetchApi?: { - fetch: typeof fetch; - }; - }); - // (undocumented) - listTodos( - request: ListTodos, - options?: RequestOptions, - ): Promise>; -} - -// @public (undocumented) -export type ListTodos = { - query: { - entity?: string; - orderBy?: string; - filter?: Array; - offset?: number; - limit?: number; - }; -}; - -// @public (undocumented) -export interface ListTodos200Response { - // (undocumented) - items: Array; - // (undocumented) - limit: number; - // (undocumented) - offset: number; - // (undocumented) - totalCount: number; -} - -// @public (undocumented) -export interface ListTodos400Response { - // (undocumented) - error?: ListTodos400ResponseError; -} - -// @public (undocumented) -export interface ListTodos400ResponseError { - // (undocumented) - message?: string; -} - -// @public -export interface RequestOptions { - // (undocumented) - token?: string; -} - -// @public (undocumented) -export interface TodoItem { - author?: string; - lineNumber?: number; - repoFilePath?: string; - tag: string; - text: string; - viewUrl?: string; -} - -// @public -export type TypedResponse = Omit & { - json: () => Promise; -}; - -// (No @packageDocumentation comment for this package) -``` diff --git a/plugins/todo-common/api-report.md b/plugins/todo-common/api-report.md deleted file mode 100644 index e0cbc50301..0000000000 --- a/plugins/todo-common/api-report.md +++ /dev/null @@ -1,7 +0,0 @@ -## API Report File for "@backstage/plugin-todo-common" - -> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). - -```ts -// (No @packageDocumentation comment for this package) -``` diff --git a/plugins/todo-common/catalog-info.yaml b/plugins/todo-common/catalog-info.yaml deleted file mode 100644 index ad20fb88e4..0000000000 --- a/plugins/todo-common/catalog-info.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: backstage.io/v1alpha1 -kind: Component -metadata: - name: backstage-plugin-todo-common - title: '@backstage/plugin-todo-common' - description: Common functionalities for the todo plugin -spec: - lifecycle: experimental - type: backstage-common-library - owner: maintainers diff --git a/plugins/todo-common/package.json b/plugins/todo-common/package.json deleted file mode 100644 index ee1fd41700..0000000000 --- a/plugins/todo-common/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "@backstage/plugin-todo-common", - "version": "0.0.0", - "description": "Common functionalities for the todo plugin", - "backstage": { - "role": "common-library" - }, - "publishConfig": { - "access": "public" - }, - "private": true, - "repository": { - "type": "git", - "url": "https://github.com/backstage/backstage", - "directory": "plugins/todo-common" - }, - "license": "Apache-2.0", - "sideEffects": false, - "exports": { - ".": "./src/index.ts", - "./client": "./src/client.ts", - "./package.json": "./package.json" - }, - "main": "src/index.ts", - "types": "src/index.ts", - "typesVersions": { - "*": { - "client": [ - "src/client.ts" - ], - "package.json": [ - "package.json" - ] - } - }, - "files": [ - "dist" - ], - "scripts": { - "build": "backstage-cli package build", - "clean": "backstage-cli package clean", - "lint": "backstage-cli package lint", - "prepack": "backstage-cli package prepack", - "postpack": "backstage-cli package postpack", - "test": "backstage-cli package test" - }, - "dependencies": { - "cross-fetch": "^4.0.0", - "uri-template": "^2.0.0" - }, - "devDependencies": { - "@backstage/cli": "workspace:^" - } -} diff --git a/plugins/todo-common/src/client.ts b/plugins/todo-common/src/client.ts deleted file mode 100644 index a46b762ba7..0000000000 --- a/plugins/todo-common/src/client.ts +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright 2024 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. - */ -export * from './schema/openapi/generated'; diff --git a/plugins/todo-common/src/index.ts b/plugins/todo-common/src/index.ts deleted file mode 100644 index b0f602d2d8..0000000000 --- a/plugins/todo-common/src/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export {}; diff --git a/plugins/todo-common/src/schema/openapi/generated/apis/DefaultApi.client.ts b/plugins/todo-common/src/schema/openapi/generated/apis/DefaultApi.client.ts deleted file mode 100644 index 9eb423ecb7..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/apis/DefaultApi.client.ts +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** -import { DiscoveryApi } from '../types/discovery'; -import { FetchApi } from '../types/fetch'; -import crossFetch from 'cross-fetch'; -import { pluginId } from '../pluginId'; -import * as parser from 'uri-template'; - -import { ListTodos200Response } from '../models/ListTodos200Response.model'; - -/** - * Wraps the Response type to convey a type on the json call. - * - * @public - */ -export type TypedResponse = Omit & { - json: () => Promise; -}; - -/** - * Options you can pass into a request for additional information. - * - * @public - */ -export interface RequestOptions { - token?: string; -} - -/** - * @public - */ -export type ListTodos = { - query: { - entity?: string; - orderBy?: string; - filter?: Array; - offset?: number; - limit?: number; - }; -}; - -/** - * no description - * @public - */ -export class DefaultApiClient { - private readonly discoveryApi: DiscoveryApi; - private readonly fetchApi: FetchApi; - - constructor(options: { - discoveryApi: { getBaseUrl(pluginId: string): Promise }; - fetchApi?: { fetch: typeof fetch }; - }) { - this.discoveryApi = options.discoveryApi; - this.fetchApi = options.fetchApi || { fetch: crossFetch }; - } - - /** - * @param entity - - * @param orderBy - - * @param filter - - * @param offset - - * @param limit - - */ - public async listTodos( - request: ListTodos, - options?: RequestOptions, - ): Promise> { - const baseUrl = await this.discoveryApi.getBaseUrl(pluginId); - - const uriTemplate = `/v1/todos{?entity,orderBy,filter*,offset,limit}`; - - const uri = parser.parse(uriTemplate).expand({ - ...request.query, - }); - - return await this.fetchApi.fetch(`${baseUrl}${uri}`, { - headers: { - 'Content-Type': 'application/json', - ...(options?.token && { Authorization: `Bearer ${options?.token}` }), - }, - method: 'GET', - }); - } -} diff --git a/plugins/todo-common/src/schema/openapi/generated/apis/index.ts b/plugins/todo-common/src/schema/openapi/generated/apis/index.ts deleted file mode 100644 index 51dcca33fe..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/apis/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from './DefaultApi.client'; diff --git a/plugins/todo-common/src/schema/openapi/generated/index.ts b/plugins/todo-common/src/schema/openapi/generated/index.ts deleted file mode 100644 index bb399e97a0..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from './apis'; -export * from './models'; diff --git a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos200Response.model.ts b/plugins/todo-common/src/schema/openapi/generated/models/ListTodos200Response.model.ts deleted file mode 100644 index 5aa13bc4c0..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos200Response.model.ts +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** -import { TodoItem } from '../models/TodoItem.model'; - -/** - * @public - */ -export interface ListTodos200Response { - items: Array; - totalCount: number; - offset: number; - limit: number; -} diff --git a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400Response.model.ts b/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400Response.model.ts deleted file mode 100644 index 8a78ff797a..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400Response.model.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** -import { ListTodos400ResponseError } from '../models/ListTodos400ResponseError.model'; - -/** - * @public - */ -export interface ListTodos400Response { - error?: ListTodos400ResponseError; -} diff --git a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400ResponseError.model.ts b/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400ResponseError.model.ts deleted file mode 100644 index 7ed1b08427..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/models/ListTodos400ResponseError.model.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** - -/** - * @public - */ -export interface ListTodos400ResponseError { - message?: string; -} diff --git a/plugins/todo-common/src/schema/openapi/generated/models/TodoItem.model.ts b/plugins/todo-common/src/schema/openapi/generated/models/TodoItem.model.ts deleted file mode 100644 index 99a3062465..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/models/TodoItem.model.ts +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright 2024 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. - */ - -// ****************************************************************** -// * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. * -// ****************************************************************** - -/** - * @public - */ -export interface TodoItem { - /** - * The contents of the TODO comment - */ - text: string; - /** - * The tag used, e.g. TODO, FIXME - */ - tag: string; - /** - * References author, if any - */ - author?: string; - /** - * URL used to view the file - */ - viewUrl?: string; - /** - * The line number of the file that the TODO occurs at - */ - lineNumber?: number; - /** - * The path of the file containing the TODO within the repo - */ - repoFilePath?: string; -} diff --git a/plugins/todo-common/src/schema/openapi/generated/models/index.ts b/plugins/todo-common/src/schema/openapi/generated/models/index.ts deleted file mode 100644 index e4ce8db3e3..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/models/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export * from '../models/ListTodos200Response.model'; -export * from '../models/ListTodos400Response.model'; -export * from '../models/ListTodos400ResponseError.model'; -export * from '../models/TodoItem.model'; diff --git a/plugins/todo-common/src/schema/openapi/generated/pluginId.ts b/plugins/todo-common/src/schema/openapi/generated/pluginId.ts deleted file mode 100644 index 9952759225..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/pluginId.ts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2024 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. - */ - -export const pluginId = 'todo'; diff --git a/plugins/todo-common/src/schema/openapi/generated/types/discovery.ts b/plugins/todo-common/src/schema/openapi/generated/types/discovery.ts deleted file mode 100644 index a7f87d3780..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/types/discovery.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright 2023 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. - */ - -/** - * This is a copy of the DiscoveryApi, to avoid importing core-plugin-api. - */ -export type DiscoveryApi = { - getBaseUrl(pluginId: string): Promise; -}; diff --git a/plugins/todo-common/src/schema/openapi/generated/types/fetch.ts b/plugins/todo-common/src/schema/openapi/generated/types/fetch.ts deleted file mode 100644 index 3de56c028e..0000000000 --- a/plugins/todo-common/src/schema/openapi/generated/types/fetch.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright 2023 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. - */ - -/** - * This is a copy of FetchApi, to avoid importing core-plugin-api. - */ -export type FetchApi = { - fetch: typeof fetch; -}; diff --git a/plugins/todo-common/src/setupTests.ts b/plugins/todo-common/src/setupTests.ts deleted file mode 100644 index c7ce5c0988..0000000000 --- a/plugins/todo-common/src/setupTests.ts +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright 2024 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. - */ -export {};