keycloakify 9.7.1 → 9.7.2
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
@@ -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);
|