keycloakify 10.0.0-rc.140 → 10.0.0-rc.141
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/526.index.js
CHANGED
@@ -767,14 +767,14 @@ async function command(params) {
|
|
767
767
|
.map(({ name, envValue }) => envValue === undefined ? undefined : { name, envValue })
|
768
768
|
.filter((0,exclude.exclude)(undefined))
|
769
769
|
.map(({ name, envValue }) => `--env${SPACE_PLACEHOLDER}${name}='${envValue.replace(/'/g, "'\\''")}'`),
|
770
|
-
|
770
|
+
buildContext.startKeycloakOptions.dockerExtraArgs.join(SPACE_PLACEHOLDER),
|
771
771
|
`${(_d = (_c = buildContext.startKeycloakOptions.dockerImage) === null || _c === void 0 ? void 0 : _c.reference) !== null && _d !== void 0 ? _d : "quay.io/keycloak/keycloak"}:${dockerImageTag}`,
|
772
772
|
"start-dev",
|
773
773
|
...(21 <= keycloakMajorVersionNumber && keycloakMajorVersionNumber < 24
|
774
774
|
? ["--features=declarative-user-profile"]
|
775
775
|
: []),
|
776
776
|
...(realmJsonFilePath === undefined ? [] : ["--import-realm"]),
|
777
|
-
|
777
|
+
buildContext.startKeycloakOptions.keycloakExtraArgs.join(SPACE_PLACEHOLDER)
|
778
778
|
];
|
779
779
|
console.log(source_default().blue([
|
780
780
|
`$ docker run \\`,
|
package/package.json
CHANGED
@@ -388,14 +388,14 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
388
388
|
({ name, envValue }) =>
|
389
389
|
`--env${SPACE_PLACEHOLDER}${name}='${envValue.replace(/'/g, "'\\''")}'`
|
390
390
|
),
|
391
|
-
|
391
|
+
buildContext.startKeycloakOptions.dockerExtraArgs.join(SPACE_PLACEHOLDER),
|
392
392
|
`${buildContext.startKeycloakOptions.dockerImage?.reference ?? "quay.io/keycloak/keycloak"}:${dockerImageTag}`,
|
393
393
|
"start-dev",
|
394
394
|
...(21 <= keycloakMajorVersionNumber && keycloakMajorVersionNumber < 24
|
395
395
|
? ["--features=declarative-user-profile"]
|
396
396
|
: []),
|
397
397
|
...(realmJsonFilePath === undefined ? [] : ["--import-realm"]),
|
398
|
-
|
398
|
+
buildContext.startKeycloakOptions.keycloakExtraArgs.join(SPACE_PLACEHOLDER)
|
399
399
|
];
|
400
400
|
|
401
401
|
console.log(
|