ultraenv 1.0.2 → 1.0.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.
@@ -3421,6 +3421,7 @@ async function watchSync(envPath, examplePath) {
3421
3421
  }
3422
3422
  }, 200);
3423
3423
  });
3424
+ process.setMaxListeners(process.getMaxListeners() + 1);
3424
3425
  process.on("SIGINT", () => {
3425
3426
  if (watcher !== null) watcher.close();
3426
3427
  writeLine("");
package/dist/cli/index.js CHANGED
@@ -192,7 +192,7 @@ var COMMAND_REGISTRY = {
192
192
  runner: m.run,
193
193
  description: "Generate TypeScript types"
194
194
  })),
195
- sync: () => import("../sync-MYLMDDY6.js").then((m) => ({ runner: m.run, description: "Sync .env.example" })),
195
+ sync: () => import("../sync-PZVGYIAB.js").then((m) => ({ runner: m.run, description: "Sync .env.example" })),
196
196
  scan: () => import("../scan-4BXGHR33.js").then((m) => ({ runner: m.run, description: "Scan for secrets" })),
197
197
  debug: () => import("../debug-6VCX3QSP.js").then((m) => ({ runner: m.run, description: "Show diagnostics" })),
198
198
  protect: () => import("../protect-A4G7LQFJ.js").then((m) => ({
@@ -182,6 +182,7 @@ async function watchSync(envPath, examplePath) {
182
182
  }
183
183
  }, 200);
184
184
  });
185
+ process.setMaxListeners(process.getMaxListeners() + 1);
185
186
  process.on("SIGINT", () => {
186
187
  if (watcher !== null) watcher.close();
187
188
  writeLine("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultraenv",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "The Ultimate Environment Variable Manager — Validate, Type, Encrypt, Sync, and Never Ship Broken Configs Again",
5
5
  "type": "module",
6
6
  "exports": {