Skip to content

Commit

Permalink
fix: undefined emojis printed in terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-elhaddad committed Apr 30, 2024
1 parent eb969e7 commit 52a1c5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try {
if (isListening) {
listenForChanges(dirPath, isVerbose);
} else {
Logging.main("Done 🎉");
Logging.main("Done.");
}
} catch (e: any) {
Logging.error(e);
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ export const listenForChanges = (dirPath: string, isVerbose: boolean) => {
}
});

Logging.main("Listening for changes 🔍");
Logging.main("Listening for changes...");
// process.exit(0);
};

0 comments on commit 52a1c5f

Please sign in to comment.