From 2aba4a3448f99d5bfc96ec1ac5ec0a0d6ad21168 Mon Sep 17 00:00:00 2001 From: Amos Wong Date: Thu, 25 Apr 2019 22:48:36 +0800 Subject: [PATCH] Remove switch fallthrough for eslint compliance --- src/BundleAnalyzerPlugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BundleAnalyzerPlugin.js b/src/BundleAnalyzerPlugin.js index 888296a2..0fa1779d 100644 --- a/src/BundleAnalyzerPlugin.js +++ b/src/BundleAnalyzerPlugin.js @@ -130,7 +130,7 @@ class BundleAnalyzerPlugin { getBundleDirFromCompiler() { switch (this.compiler.outputFileSystem.constructor.name) { case 'MemoryFileSystem': - + return null; // Detect AsyncMFS used by Nuxt 2.5 that replaces webpack's MFS during development // Related: #274 case 'AsyncMFS':