keycloakify 11.9.3 → 11.9.4

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/375.index.js CHANGED
@@ -1829,6 +1829,9 @@ async function command(params) {
1829
1829
  ].join("\n")));
1830
1830
  return false;
1831
1831
  }
1832
+ if (process.env.NO_DEV_SERVER === "true") {
1833
+ return false;
1834
+ }
1832
1835
  return true;
1833
1836
  })();
1834
1837
  let devServerPort = undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.9.3",
3
+ "version": "11.9.4",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -504,6 +504,10 @@ export async function command(params: {
504
504
  return false;
505
505
  }
506
506
 
507
+ if (process.env.NO_DEV_SERVER === "true") {
508
+ return false;
509
+ }
510
+
507
511
  return true;
508
512
  })();
509
513