keycloakify 11.13.10 → 11.13.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/97.index.js CHANGED
@@ -163,7 +163,8 @@ async function getExtensionModuleMetas(params) {
163
163
  }
164
164
  const shouldExcludeLoginUi = await (async () => {
165
165
  for (const entry of installedExtensionModules) {
166
- if (entry.moduleName === LOGIN_UI_MODULE_NAME) {
166
+ if (entry.moduleName === LOGIN_UI_MODULE_NAME ||
167
+ entry.moduleName === "@keycloakify/login-ui-storybook") {
167
168
  continue;
168
169
  }
169
170
  if (await (0,fs_existsAsync/* existsAsync */.o)((0,external_path_.join)(entry.dirPath, constants/* KEYCLOAK_THEME */.PC, "login", "pages", "login"))) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.13.10",
3
+ "version": "11.13.11",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -144,7 +144,10 @@ export async function getExtensionModuleMetas(params: {
144
144
 
145
145
  const shouldExcludeLoginUi = await (async () => {
146
146
  for (const entry of installedExtensionModules) {
147
- if (entry.moduleName === LOGIN_UI_MODULE_NAME) {
147
+ if (
148
+ entry.moduleName === LOGIN_UI_MODULE_NAME ||
149
+ entry.moduleName === "@keycloakify/login-ui-storybook"
150
+ ) {
148
151
  continue;
149
152
  }
150
153