From d01f7b9ef71c765c7ed6811b539959abd95614d6 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Wed, 1 Mar 2017 18:19:33 +0900 Subject: [PATCH] Update warning message --- gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.ts b/gulpfile.ts index dfbc26535..61b5d41b5 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -26,7 +26,7 @@ const isProduction = env === 'production'; const isDebug = !isProduction; if (isDebug) { - console.log(chalk.yellow.bold('!!!注意!!! 開発モードが有効です。(成果物の圧縮などはスキップされます)')); + console.log(chalk.yellow.bold('!!!WARNING!!! NODE_ENV is not "production". (built script compessing will not be performed.)')); } const constants = require('./src/const.json');