Skip to content

Commit

Permalink
Fix filename-case (#2242)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Dec 21, 2023
1 parent a943b3a commit 3df1606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/no-unnecessary-polyfills.js
Expand Up @@ -2,7 +2,7 @@
const path = require('node:path');
const readPkgUp = require('read-pkg-up');
const coreJsCompat = require('core-js-compat');
const {camelCase} = require('lodash');
const {camelCase} = require('./utils/lodash.js');
const isStaticRequire = require('./ast/is-static-require.js');

const {data: compatData, entries: coreJsEntries} = coreJsCompat;
Expand Down

1 comment on commit 3df1606

@fisker
Copy link
Collaborator Author

@fisker fisker commented on 3df1606 Dec 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: This fixes no-unnecessary-polyfills not filename-case, mistake.

Please sign in to comment.