keycloakify 10.0.0-rc.7 → 10.0.0-rc.9
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/main.js +18102 -22724
- package/package.json +4 -5
- package/src/bin/keycloakify/keycloakify.ts +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "keycloakify",
|
3
|
-
"version": "10.0.0-rc.
|
3
|
+
"version": "10.0.0-rc.9",
|
4
4
|
"description": "Create Keycloak themes using React",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -743,7 +743,7 @@
|
|
743
743
|
"@types/yauzl": "^2.10.0",
|
744
744
|
"@types/yazl": "^2.4.2",
|
745
745
|
"@vercel/ncc": "^0.38.1",
|
746
|
-
"chalk": "
|
746
|
+
"chalk": "^5.3.0",
|
747
747
|
"cheerio": "^1.0.0-rc.5",
|
748
748
|
"chokidar-cli": "^3.0.0",
|
749
749
|
"cli-select": "^1.1.2",
|
@@ -751,7 +751,7 @@
|
|
751
751
|
"husky": "^4.3.8",
|
752
752
|
"lint-staged": "^11.0.0",
|
753
753
|
"magic-string": "^0.30.7",
|
754
|
-
"make-fetch-happen": "^
|
754
|
+
"make-fetch-happen": "^13.0.1",
|
755
755
|
"patch-package": "^8.0.0",
|
756
756
|
"powerhooks": "^0.26.7",
|
757
757
|
"prettier": "^2.3.0",
|
@@ -770,7 +770,6 @@
|
|
770
770
|
"vitest": "^0.29.8",
|
771
771
|
"yauzl": "^2.10.0",
|
772
772
|
"yazl": "^2.5.1",
|
773
|
-
"zod": "^3.17.10"
|
774
|
-
"zod-to-json-schema": "^3.20.4"
|
773
|
+
"zod": "^3.17.10"
|
775
774
|
}
|
776
775
|
}
|
@@ -18,19 +18,19 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
18
18
|
commandOutput = child_process.execSync("mvn --version", { "stdio": ["ignore", "pipe", "ignore"] });
|
19
19
|
} catch {}
|
20
20
|
|
21
|
-
if (
|
21
|
+
if (commandOutput?.toString("utf8").includes("Apache Maven")) {
|
22
22
|
break exit_if_maven_not_installed;
|
23
23
|
}
|
24
24
|
|
25
25
|
const installationCommand = (() => {
|
26
26
|
switch (os.platform()) {
|
27
27
|
case "darwin":
|
28
|
-
return "brew install
|
28
|
+
return "brew install mvn";
|
29
29
|
case "win32":
|
30
|
-
return "choco install
|
30
|
+
return "choco install mvn";
|
31
31
|
case "linux":
|
32
32
|
default:
|
33
|
-
return "sudo apt-get install
|
33
|
+
return "sudo apt-get install mvn";
|
34
34
|
}
|
35
35
|
})();
|
36
36
|
|