keycloakify 11.15.8-rc.2 → 11.15.8
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/254.index.js
CHANGED
|
@@ -160,7 +160,7 @@ async function command(params) {
|
|
|
160
160
|
}
|
|
161
161
|
const moduleName = "@keycloakify/login-ui-storybook";
|
|
162
162
|
const extensionModuleMetas = await (0,_sync_extensions_extensionModuleMeta__WEBPACK_IMPORTED_MODULE_11__/* .getExtensionModuleMetas */ .f)({ buildContext });
|
|
163
|
-
const hasLoginStoriesProvidedFromOtherModule = extensionModuleMetas.find(meta => meta.files.find(file => file.fileRelativePath.startsWith(
|
|
163
|
+
const hasLoginStoriesProvidedFromOtherModule = extensionModuleMetas.find(meta => meta.files.find(file => file.fileRelativePath.startsWith(`login${path__WEBPACK_IMPORTED_MODULE_1__.sep}pages${path__WEBPACK_IMPORTED_MODULE_1__.sep}`) && file.copyableFilePath.endsWith(".stories.tsx")) !== undefined) !== undefined;
|
|
164
164
|
if (hasLoginStoriesProvidedFromOtherModule) {
|
|
165
165
|
break install_stories;
|
|
166
166
|
}
|
package/package.json
CHANGED
|
@@ -193,8 +193,8 @@ export async function command(params: { buildContext: BuildContext }) {
|
|
|
193
193
|
meta.files.find(
|
|
194
194
|
file =>
|
|
195
195
|
file.fileRelativePath.startsWith(
|
|
196
|
-
|
|
197
|
-
) && file.copyableFilePath.endsWith("stories.tsx")
|
|
196
|
+
`login${pathSep}pages${pathSep}`
|
|
197
|
+
) && file.copyableFilePath.endsWith(".stories.tsx")
|
|
198
198
|
) !== undefined
|
|
199
199
|
) !== undefined;
|
|
200
200
|
|