happy-coder 0.7.1-beta.1 → 0.7.1-beta.2
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/index.cjs +4 -2
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5038,10 +5038,12 @@ Sessions spawned by the daemon will continue running after daemon stops unless -
|
|
|
5038
5038
|
const unknownArgs = [];
|
|
5039
5039
|
for (let i = 0; i < args.length; i++) {
|
|
5040
5040
|
const arg = args[i];
|
|
5041
|
-
if (arg === "--help") {
|
|
5041
|
+
if (arg === "-h" || arg === "--help") {
|
|
5042
5042
|
showHelp = true;
|
|
5043
|
-
|
|
5043
|
+
unknownArgs.push(arg);
|
|
5044
|
+
} else if (arg === "-v" || arg === "--version") {
|
|
5044
5045
|
showVersion = true;
|
|
5046
|
+
unknownArgs.push(arg);
|
|
5045
5047
|
} else if (arg === "--auth" || arg === "--login") {
|
|
5046
5048
|
forceAuth = true;
|
|
5047
5049
|
} else if (arg === "--force-auth") {
|
package/dist/index.mjs
CHANGED
|
@@ -5017,10 +5017,12 @@ Sessions spawned by the daemon will continue running after daemon stops unless -
|
|
|
5017
5017
|
const unknownArgs = [];
|
|
5018
5018
|
for (let i = 0; i < args.length; i++) {
|
|
5019
5019
|
const arg = args[i];
|
|
5020
|
-
if (arg === "--help") {
|
|
5020
|
+
if (arg === "-h" || arg === "--help") {
|
|
5021
5021
|
showHelp = true;
|
|
5022
|
-
|
|
5022
|
+
unknownArgs.push(arg);
|
|
5023
|
+
} else if (arg === "-v" || arg === "--version") {
|
|
5023
5024
|
showVersion = true;
|
|
5025
|
+
unknownArgs.push(arg);
|
|
5024
5026
|
} else if (arg === "--auth" || arg === "--login") {
|
|
5025
5027
|
forceAuth = true;
|
|
5026
5028
|
} else if (arg === "--force-auth") {
|