style: add missing indents in switch
This commit is contained in:
parent
8b4b0a6140
commit
1c34abf009
|
@ -33,14 +33,14 @@ module.exports = class FilerWebpackPlugin {
|
||||||
|
|
||||||
// Apply fs, path and buffer shims if required
|
// Apply fs, path and buffer shims if required
|
||||||
switch (resolveData.request) {
|
switch (resolveData.request) {
|
||||||
case 'fs':
|
case 'fs':
|
||||||
if (!this.options.shimFs) return;
|
if (!this.options.shimFs) return;
|
||||||
return this.applyFsShim(resolveData);
|
return this.applyFsShim(resolveData);
|
||||||
case 'path':
|
case 'path':
|
||||||
if (!this.options.shimPath) return;
|
if (!this.options.shimPath) return;
|
||||||
return this.applyPathShim(resolveData);
|
return this.applyPathShim(resolveData);
|
||||||
default:
|
default:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue