From d4e32947d4eff3ce9d36b9817223741f4e7c3331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Tue, 2 Apr 2024 10:44:34 +0200 Subject: [PATCH] fix: typo in error message for missing default export (#97) --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index 6f1d874..3bd45df 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -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) {