From 627f81e1b0440869a8c4c9e340d3d5a4b77c10e7 Mon Sep 17 00:00:00 2001 From: SleepWalker Date: Tue, 1 Aug 2017 20:43:16 +0300 Subject: [PATCH] Fix typos --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 4e6feb4..afb0ee3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -42,7 +42,7 @@ const isTest = process.argv.some((arg) => arg.indexOf('karma') !== -1); const isDockerized = !!process.env.DOCKERIZED; const isCI = !!process.env.CI; -const isSilent = isCI || process.argv.some((arg) => /quite/.test(arg)); +const isSilent = isCI || process.argv.some((arg) => /quiet/.test(arg)); process.env.NODE_ENV = isProduction ? 'production' : 'development'; if (isTest) {