keycloakify 11.8.11 → 11.8.13
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/369.index.js
CHANGED
@@ -77,7 +77,7 @@ async function command(params) {
|
|
77
77
|
return;
|
78
78
|
}
|
79
79
|
if (themeType === "admin") {
|
80
|
-
console.log(`${chalk__WEBPACK_IMPORTED_MODULE_6___default().red("✗")} Sorry, there is no Storybook support for the
|
80
|
+
console.log(`${chalk__WEBPACK_IMPORTED_MODULE_6___default().red("✗")} Sorry, there is no Storybook support for the Admin UI.`);
|
81
81
|
process.exit(0);
|
82
82
|
return;
|
83
83
|
}
|
package/bin/932.index.js
CHANGED
@@ -61,11 +61,14 @@ async function command(params) {
|
|
61
61
|
process.exit(-1);
|
62
62
|
}
|
63
63
|
const { value: emailThemeType } = await cli_select__WEBPACK_IMPORTED_MODULE_0___default()({
|
64
|
-
values: [
|
64
|
+
values: [
|
65
|
+
"native (FreeMarker)",
|
66
|
+
"Another email templating solution"
|
67
|
+
]
|
65
68
|
}).catch(() => {
|
66
69
|
process.exit(-1);
|
67
70
|
});
|
68
|
-
if (emailThemeType === "
|
71
|
+
if (emailThemeType === "Another email templating solution") {
|
69
72
|
console.log([
|
70
73
|
"There is currently no automated support for keycloakify-email, it has to be done manually, see documentation:",
|
71
74
|
"https://docs.keycloakify.dev/theme-types/email-theme"
|
package/package.json
CHANGED
package/src/bin/add-story.ts
CHANGED
@@ -74,7 +74,7 @@ export async function command(params: { buildContext: BuildContext }) {
|
|
74
74
|
|
75
75
|
if (themeType === "admin") {
|
76
76
|
console.log(
|
77
|
-
`${chalk.red("✗")} Sorry, there is no Storybook support for the
|
77
|
+
`${chalk.red("✗")} Sorry, there is no Storybook support for the Admin UI.`
|
78
78
|
);
|
79
79
|
|
80
80
|
process.exit(0);
|
@@ -49,12 +49,15 @@ export async function command(params: { buildContext: BuildContext }) {
|
|
49
49
|
}
|
50
50
|
|
51
51
|
const { value: emailThemeType } = await cliSelect({
|
52
|
-
values: [
|
52
|
+
values: [
|
53
|
+
"native (FreeMarker)" as const,
|
54
|
+
"Another email templating solution" as const
|
55
|
+
]
|
53
56
|
}).catch(() => {
|
54
57
|
process.exit(-1);
|
55
58
|
});
|
56
59
|
|
57
|
-
if (emailThemeType === "
|
60
|
+
if (emailThemeType === "Another email templating solution") {
|
58
61
|
console.log(
|
59
62
|
[
|
60
63
|
"There is currently no automated support for keycloakify-email, it has to be done manually, see documentation:",
|