@node9/proxy 1.12.2 → 1.12.3

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/dist/cli.js CHANGED
@@ -20787,4 +20787,6 @@ var firstArg = process.argv[2];
20787
20787
  if (firstArg && firstArg !== "--" && !firstArg.startsWith("-") && !knownSubcommands.has(firstArg)) {
20788
20788
  process.argv.splice(2, 0, "--");
20789
20789
  }
20790
- program.parse();
20790
+ (async () => {
20791
+ await program.parseAsync();
20792
+ })();
package/dist/cli.mjs CHANGED
@@ -20761,4 +20761,6 @@ var firstArg = process.argv[2];
20761
20761
  if (firstArg && firstArg !== "--" && !firstArg.startsWith("-") && !knownSubcommands.has(firstArg)) {
20762
20762
  process.argv.splice(2, 0, "--");
20763
20763
  }
20764
- program.parse();
20764
+ (async () => {
20765
+ await program.parseAsync();
20766
+ })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node9/proxy",
3
- "version": "1.12.2",
3
+ "version": "1.12.3",
4
4
  "description": "The Sudo Command for AI Agents. Execution Security for Claude Code & MCP.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",