From 1c34abf009fc368ee8c7efd9513c5affc20d6da9 Mon Sep 17 00:00:00 2001 From: Ben Heidemann Date: Sat, 10 Apr 2021 12:15:49 +0100 Subject: [PATCH] style: add missing indents in switch --- src/webpack-plugin/plugin.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/webpack-plugin/plugin.js b/src/webpack-plugin/plugin.js index 764a1ae..77dbabd 100644 --- a/src/webpack-plugin/plugin.js +++ b/src/webpack-plugin/plugin.js @@ -33,14 +33,14 @@ module.exports = class FilerWebpackPlugin { // Apply fs, path and buffer shims if required switch (resolveData.request) { - case 'fs': - if (!this.options.shimFs) return; - return this.applyFsShim(resolveData); - case 'path': - if (!this.options.shimPath) return; - return this.applyPathShim(resolveData); - default: - return; + case 'fs': + if (!this.options.shimFs) return; + return this.applyFsShim(resolveData); + case 'path': + if (!this.options.shimPath) return; + return this.applyPathShim(resolveData); + default: + return; } } );