keycloakify 10.0.0-rc.43 → 10.0.0-rc.44
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/538.index.js
CHANGED
@@ -572,7 +572,8 @@ async function generateKcGenTs(params) {
|
|
572
572
|
``,
|
573
573
|
`export const kcEnvDefaults: Record<KcEnvName, string> = ${JSON.stringify(Object.fromEntries(buildContext.environmentVariables.map(({ name, default: defaultValue }) => [name, defaultValue])), null, 2)};`,
|
574
574
|
``,
|
575
|
-
`/* prettier-ignore-end
|
575
|
+
`/* prettier-ignore-end */`,
|
576
|
+
``
|
576
577
|
].join("\n"), "utf8");
|
577
578
|
if (currentContent !== undefined && currentContent.equals(newContent)) {
|
578
579
|
return;
|
package/package.json
CHANGED
@@ -33,7 +33,7 @@ export function keycloakify(params?: Params) {
|
|
33
33
|
let shouldGenerateSourcemap: boolean | undefined = undefined;
|
34
34
|
|
35
35
|
const plugin = {
|
36
|
-
name: "keycloakify"
|
36
|
+
name: "keycloakify",
|
37
37
|
configResolved: async resolvedConfig => {
|
38
38
|
shouldGenerateSourcemap = resolvedConfig.build.sourcemap !== false;
|
39
39
|
|
package/vite-plugin/index.js
CHANGED
@@ -5154,7 +5154,8 @@ async function generateKcGenTs(params) {
|
|
5154
5154
|
``,
|
5155
5155
|
`export const kcEnvDefaults: Record<KcEnvName, string> = ${JSON.stringify(Object.fromEntries(buildContext.environmentVariables.map(({ name, default: defaultValue }) => [name, defaultValue])), null, 2)};`,
|
5156
5156
|
``,
|
5157
|
-
`/* prettier-ignore-end
|
5157
|
+
`/* prettier-ignore-end */`,
|
5158
|
+
``
|
5158
5159
|
].join("\n"), "utf8");
|
5159
5160
|
if (currentContent !== undefined && currentContent.equals(newContent)) {
|
5160
5161
|
return;
|