@node9/proxy 1.12.1 → 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 +3 -1
- package/dist/cli.mjs +3 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
20764
|
+
(async () => {
|
|
20765
|
+
await program.parseAsync();
|
|
20766
|
+
})();
|