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.
Files changed (2) hide show
  1. package/bin.cjs +10 -2
  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(Command_exports.workingDirectory(cwd));
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(Command_exports.workingDirectory(cwd));
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)));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-hero-cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "The CLI used to run exercises for the AI Hero course",
6
6
  "bin": "bin.cjs",