@runeya/runeya 1.33.30 → 1.33.32

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runeya/runeya",
3
- "version": "1.33.30",
3
+ "version": "1.33.32",
4
4
  "description": "Monitor processes as a stack",
5
5
  "git": "https://github.com/runeya/runeya",
6
6
  "repository": "https://github.com/runeya/runeya",
package/www.js CHANGED
@@ -2516,7 +2516,6 @@ var require_Service = __commonJS({
2516
2516
  if (tag) envs[key].override = `{{${tag}_RUNEYA_OVERRIDE}}`;
2517
2517
  const override = overrides[environment.label]?.[key];
2518
2518
  if (!env || !override) return;
2519
- if (override) console.log(JSON.stringify(["runeya", envs[key].override], (_, v) => typeof v === "function" ? `[func]` : v));
2520
2519
  envs[key].override = override.replace("STACK_MONITOR_OVERRIDE", "RUNEYA_OVERRIDE");
2521
2520
  });
2522
2521
  });
@@ -3356,6 +3355,7 @@ var require_stack = __commonJS({
3356
3355
  let environments = [];
3357
3356
  try {
3358
3357
  services = await PromiseB2.map(dbsRootPath, (id) => Service.load(id, Stack));
3358
+ services = services.filter((service) => service.label);
3359
3359
  environments = await EnvironmentModel.all();
3360
3360
  } catch (error) {
3361
3361
  console.error(error);