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", 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;