style: add missing indents in switch

This commit is contained in:
Ben Heidemann 2021-04-10 12:15:49 +01:00 committed by David Humphrey
parent 8b4b0a6140
commit 1c34abf009
1 changed files with 8 additions and 8 deletions

View File

@ -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;
}
}
);