Skip to content

Commit

Permalink
fix: typo in error message for missing default export (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored Apr 2, 2024
1 parent 266859d commit d4e3294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ process.on("exit", () => {
configObj = {};
}
} else if (configObj === undefined) {
logger.error("Default export missing from configuration file (use `export default {...}` or `module.exports = {...}`");
logger.error("Default export missing from configuration file (use `export default {...}` or `module.exports = {...}`)");
process.exit(EXIT_CODES.configuration);
}
} catch (e) {
Expand Down

0 comments on commit d4e3294

Please sign in to comment.