Skip to content

Commit 3df1606

Browse files
authoredDec 21, 2023
Fix filename-case (#2242)
1 parent a943b3a commit 3df1606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎rules/no-unnecessary-polyfills.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const path = require('node:path');
33
const readPkgUp = require('read-pkg-up');
44
const coreJsCompat = require('core-js-compat');
5-
const {camelCase} = require('lodash');
5+
const {camelCase} = require('./utils/lodash.js');
66
const isStaticRequire = require('./ast/is-static-require.js');
77

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

1 commit comments

Comments
 (1)

fisker commented on Dec 21, 2023

@fisker
CollaboratorAuthor

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

Please sign in to comment.