Skip to content

Commit 60114da

Browse files
committed
Renamed error param to prevent re-declaration
1 parent 01062c9 commit 60114da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default function transformCssModules({ types: t }) {
4040
// As a last resort, require the cssFile itself. This enables loading of CSS files from external deps
4141
try {
4242
return require(cssFile);
43-
} catch (e) {
43+
} catch (f) {
4444
return {}; // return empty object, this simulates result of ignored stylesheet file
4545
}
4646
}

0 commit comments

Comments
 (0)