From 145ba241e27494a1d246d8aa4146075918edebcc Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 24 May 2017 16:18:54 +0900 Subject: [PATCH] Add info to error message --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index fe5c4b944..b8d9b35f4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -89,7 +89,7 @@ async function init(): Promise { let configLogger = new Logger('Config'); if (!fs.existsSync(configPath)) { - throw 'Configuration not found'; + throw 'Configuration not found - Please run "npm run config" command.'; } const config = loadConfig();