ai-hero-cli 0.2.1 → 0.2.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/bin.cjs +10 -2
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -84995,7 +84995,11 @@ var reset2 = Command_exports2.make(
|
|
|
84995
84995
|
"-b",
|
|
84996
84996
|
branchName,
|
|
84997
84997
|
targetCommit.sha
|
|
84998
|
-
).pipe(
|
|
84998
|
+
).pipe(
|
|
84999
|
+
Command_exports.workingDirectory(cwd),
|
|
85000
|
+
Command_exports.stdout("inherit"),
|
|
85001
|
+
Command_exports.stderr("inherit")
|
|
85002
|
+
);
|
|
84999
85003
|
const exitCode4 = yield* Command_exports.exitCode(
|
|
85000
85004
|
createBranchCommand
|
|
85001
85005
|
).pipe(Effect_exports.catchAll(() => Effect_exports.succeed(1)));
|
|
@@ -85043,7 +85047,11 @@ var reset2 = Command_exports2.make(
|
|
|
85043
85047
|
"reset",
|
|
85044
85048
|
"--hard",
|
|
85045
85049
|
targetCommit.sha
|
|
85046
|
-
).pipe(
|
|
85050
|
+
).pipe(
|
|
85051
|
+
Command_exports.workingDirectory(cwd),
|
|
85052
|
+
Command_exports.stdout("inherit"),
|
|
85053
|
+
Command_exports.stderr("inherit")
|
|
85054
|
+
);
|
|
85047
85055
|
const exitCode3 = yield* Command_exports.exitCode(
|
|
85048
85056
|
resetCommand
|
|
85049
85057
|
).pipe(Effect_exports.catchAll(() => Effect_exports.succeed(1)));
|