keycloakify 10.0.0-rc.124 → 10.0.0-rc.126
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/440.index.js
CHANGED
@@ -421,7 +421,8 @@ function generateFtlFilesCodeFactory(params) {
|
|
421
421
|
});
|
422
422
|
[
|
423
423
|
["link", "href"],
|
424
|
-
["script", "src"]
|
424
|
+
["script", "src"],
|
425
|
+
["script", "data-src"]
|
425
426
|
].forEach(([selector, attrName]) => $(selector).each((...[, element]) => {
|
426
427
|
var _a;
|
427
428
|
const href = $(element).attr(attrName);
|
package/bin/526.index.js
CHANGED
@@ -689,11 +689,11 @@ async function command(params) {
|
|
689
689
|
? []
|
690
690
|
: [
|
691
691
|
"-v",
|
692
|
-
|
692
|
+
`"${realmJsonFilePath}":/opt/keycloak/data/import/myrealm-realm.json`
|
693
693
|
]),
|
694
694
|
...[
|
695
695
|
"-v",
|
696
|
-
|
696
|
+
`"${jarFilePath_cacheDir}":/opt/keycloak/providers/keycloak-theme.jar`
|
697
697
|
],
|
698
698
|
...(keycloakMajorVersionNumber <= 20
|
699
699
|
? ["-e", "JAVA_OPTS=-Dkeycloak.profile=preview"]
|
@@ -710,7 +710,7 @@ async function command(params) {
|
|
710
710
|
}))
|
711
711
|
.map(({ localDirPath, containerDirPath }) => [
|
712
712
|
"-v",
|
713
|
-
|
713
|
+
`"${localDirPath}":${containerDirPath}:rw`
|
714
714
|
])
|
715
715
|
.flat(),
|
716
716
|
...buildContext.environmentVariables
|
package/package.json
CHANGED
@@ -286,11 +286,11 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
286
286
|
? []
|
287
287
|
: [
|
288
288
|
"-v",
|
289
|
-
|
289
|
+
`"${realmJsonFilePath}":/opt/keycloak/data/import/myrealm-realm.json`
|
290
290
|
]),
|
291
291
|
...[
|
292
292
|
"-v",
|
293
|
-
|
293
|
+
`"${jarFilePath_cacheDir}":/opt/keycloak/providers/keycloak-theme.jar`
|
294
294
|
],
|
295
295
|
...(keycloakMajorVersionNumber <= 20
|
296
296
|
? ["-e", "JAVA_OPTS=-Dkeycloak.profile=preview"]
|
@@ -317,7 +317,7 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
317
317
|
}))
|
318
318
|
.map(({ localDirPath, containerDirPath }) => [
|
319
319
|
"-v",
|
320
|
-
|
320
|
+
`"${localDirPath}":${containerDirPath}:rw`
|
321
321
|
])
|
322
322
|
.flat(),
|
323
323
|
...buildContext.environmentVariables
|