Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit a1a1b62

Browse files
committed
fix lodash external function name
1 parent 758276d commit a1a1b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack/externals/lodash.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const REGEX = /^lodash/;
22

3-
module.exports = function commonExternals( context, request, callback ) {
3+
module.exports = function lodashExternals( context, request, callback ) {
44
if ( REGEX.test( request ) ) {
55
return callback( null, request.replace( /\//g, '.' ) );
66
}

0 commit comments

Comments
 (0)