From 65cad14221a0b62bb437edc7fc037b48f065f9a1 Mon Sep 17 00:00:00 2001 From: Eli Berg Date: Thu, 1 Aug 2024 10:47:26 -0700 Subject: [PATCH 1/2] Add default export for cortexPlugin --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5b4a8ed..815ea39 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ import { createRouter } from './service/router'; import { ExtensionApi } from '@cortexapps/backstage-plugin-extensions'; import { cortexExtensionApiExtensionPoint } from '@cortexapps/backstage-plugin-extensions'; -export const cortexPlugin = createBackendPlugin({ +const cortexPlugin = createBackendPlugin({ pluginId: 'cortex-backend', register(env) { @@ -69,3 +69,5 @@ export const cortexPlugin = createBackendPlugin({ }); export * from './service/router'; + +export default cortexPlugin; From 8bf53b025c133d956ac3a6413d8a207751eea69e Mon Sep 17 00:00:00 2001 From: Eli Berg Date: Thu, 1 Aug 2024 10:47:45 -0700 Subject: [PATCH 2/2] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 913359f..9d5435d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cortexapps/backstage-backend-plugin", - "version": "1.6.6", + "version": "1.6.7", "main": "dist/index.cjs.js", "module": "dist/index.ems.js", "types": "dist/index.d.ts",