Updated auth module default export

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2023-12-22 13:15:34 -06:00
parent 6aaafbf3a0
commit 928efbc54a
4 changed files with 12 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend-module-pinniped-provider': minor
---
**BREAKING** The `authModulePinnipedProvider` is now the default export and should be used like this in your backend: `backend.add(import('@backstage/plugin-auth-backend-module-pinniped-provider'));`
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend-module-microsoft-provider': minor
---
**BREAKING** The `authModuleMicrosoftProvider` is now the default export and should be used like this in your backend: `backend.add(import('@backstage/plugin-auth-backend-module-microsoft-provider'));`
@@ -21,5 +21,5 @@
*/
export { microsoftAuthenticator } from './authenticator';
export { authModuleMicrosoftProvider } from './module';
export { authModuleMicrosoftProvider as default } from './module';
export { microsoftSignInResolvers } from './resolvers';
@@ -21,4 +21,4 @@
*/
export { pinnipedAuthenticator, PinnipedStrategyCache } from './authenticator';
export { authModulePinnipedProvider } from './module';
export { authModulePinnipedProvider as default } from './module';