Skip to content

Commit

Permalink
fix(cli): src dir output
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamiell committed Sep 17, 2024
1 parent 43a5064 commit 01b8ac0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/isaacscript-cli/src/commands/monitor/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,10 @@ async function monitor(options: MonitorOptions): Promise<void> {
notifyGamePing();
}, 1000); // Every second

const srcDir = path.join(CWD, "src");

console.log("Automatically monitoring the following for changes:");
console.log(`1) your TypeScript code: ${chalk.green("./src/**/*.ts")}`);
console.log(`1) your TypeScript code: ${chalk.green(srcDir)}`);
console.log(`2) the source mod directory: ${chalk.green(MOD_SOURCE_PATH)}`);
console.log("");
console.log(`Copying files to: ${chalk.green(modTargetPath)}`);
Expand Down

0 comments on commit 01b8ac0

Please sign in to comment.