keycloakify 9.7.1 → 9.7.3
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.
@@ -5,9 +5,9 @@ var path_1 = require("path");
|
|
5
5
|
function assertNoPnpmDlx() {
|
6
6
|
if (__dirname.includes("".concat(path_1.sep, "pnpm").concat(path_1.sep, "dlx").concat(path_1.sep))) {
|
7
7
|
console.log([
|
8
|
-
"Please don't use `pnpm dlx keycloakify`.
|
9
|
-
"
|
10
|
-
"not the latest version on NPM."
|
8
|
+
"Please don't use `pnpm dlx keycloakify`.",
|
9
|
+
"\nUse `npx keycloakify` or `pnpm exec keycloakify` instead since you want to use the",
|
10
|
+
"keycloakify version that is installed in your project and not the latest version on NPM."
|
11
11
|
].join(" "));
|
12
12
|
process.exit(1);
|
13
13
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"assertNoPnpmDlx.js","sourceRoot":"","sources":["../../src/bin/tools/assertNoPnpmDlx.ts"],"names":[],"mappings":";;;AAAA,6BAAsC;AAEtC,SAAgB,eAAe;IAC3B,IAAI,SAAS,CAAC,QAAQ,CAAC,UAAG,UAAO,iBAAO,UAAO,gBAAM,UAAO,CAAE,CAAC,EAAE;QAC7D,OAAO,CAAC,GAAG,CACP;YACI,
|
1
|
+
{"version":3,"file":"assertNoPnpmDlx.js","sourceRoot":"","sources":["../../src/bin/tools/assertNoPnpmDlx.ts"],"names":[],"mappings":";;;AAAA,6BAAsC;AAEtC,SAAgB,eAAe;IAC3B,IAAI,SAAS,CAAC,QAAQ,CAAC,UAAG,UAAO,iBAAO,UAAO,gBAAM,UAAO,CAAE,CAAC,EAAE;QAC7D,OAAO,CAAC,GAAG,CACP;YACI,0CAA0C;YAC1C,sFAAsF;YACtF,0FAA0F;SAC7F,CAAC,IAAI,CAAC,GAAG,CAAC,CACd,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACnB;AACL,CAAC;AAXD,0CAWC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "keycloakify",
|
3
|
-
"version": "9.7.
|
3
|
+
"version": "9.7.3",
|
4
4
|
"description": "Create Keycloak themes using React",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -1119,7 +1119,7 @@
|
|
1119
1119
|
"@babel/parser": "^7.22.7",
|
1120
1120
|
"@babel/types": "^7.22.5",
|
1121
1121
|
"@octokit/rest": "^18.12.0",
|
1122
|
-
"cheerio": "
|
1122
|
+
"cheerio": "1.0.0-rc.5",
|
1123
1123
|
"cli-select": "^1.1.2",
|
1124
1124
|
"evt": "^2.4.18",
|
1125
1125
|
"make-fetch-happen": "^11.0.3",
|
@@ -4,9 +4,9 @@ export function assertNoPnpmDlx() {
|
|
4
4
|
if (__dirname.includes(`${pathSep}pnpm${pathSep}dlx${pathSep}`)) {
|
5
5
|
console.log(
|
6
6
|
[
|
7
|
-
"Please don't use `pnpm dlx keycloakify`.
|
8
|
-
"
|
9
|
-
"not the latest version on NPM."
|
7
|
+
"Please don't use `pnpm dlx keycloakify`.",
|
8
|
+
"\nUse `npx keycloakify` or `pnpm exec keycloakify` instead since you want to use the",
|
9
|
+
"keycloakify version that is installed in your project and not the latest version on NPM."
|
10
10
|
].join(" ")
|
11
11
|
);
|
12
12
|
process.exit(1);
|