backend-defaults: workaround for cyclic import

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-02-23 10:44:57 +01:00
parent f16d9f31cd
commit 5d0693edc0
4 changed files with 12 additions and 0 deletions
+5
View File
@@ -20,5 +20,10 @@
* @packageDocumentation
*/
// This import is here as a workaround for a cyclic dependency bug where
// backend-common must be loaded before backend-app-api
// TODO(Rugvip): Remove this once backend-common is no longer used by backend-app-api
import '@backstage/backend-common';
export type { CreateBackendOptions } from './CreateBackend';
export { createBackend } from './CreateBackend';