omegon 0.6.13 → 0.6.14

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.
@@ -79,7 +79,7 @@ export const DEPS: Dep[] = [
79
79
  tier: "core",
80
80
  check: () => hasCmd("nix"),
81
81
  install: [
82
- { platform: "any", cmd: "curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install" },
82
+ { platform: "any", cmd: "curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install --no-confirm" },
83
83
  ],
84
84
  url: "https://zero-to-nix.com",
85
85
  },
@@ -319,7 +319,10 @@ export default function (pi: ExtensionAPI) {
319
319
  setTimeout(async () => {
320
320
  try {
321
321
  const { DEPS } = await import("../bootstrap/deps.ts");
322
- const probed = DEPS.filter(d => d.tier === "core" || d.tier === "recommended");
322
+ // Probe runtime deps only skip install-time bootstrapping tools (nix)
323
+ // that Omegon doesn't call directly at runtime.
324
+ const INSTALL_ONLY = new Set(["nix"]);
325
+ const probed = DEPS.filter(d => (d.tier === "core" || d.tier === "recommended") && !INSTALL_ONLY.has(d.id));
323
326
  const missing = probed.filter(d => !d.check());
324
327
  if (missing.length === 0) return;
325
328
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omegon",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "description": "Omegon — an opinionated distribution of pi (by Mario Zechner) with extensions for lifecycle management, memory, orchestration, and visualization",
5
5
  "bin": {
6
6
  "omegon": "bin/omegon.mjs",