Skip to content

Commit e55d1ca

Browse files
authored
Added missing semicolon
1 parent 53496a0 commit e55d1ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const operator = {
3939
const modulePath = path.join(webpackContext.context, currentPath.path);
4040
delete require.cache[require.resolve(modulePath)];
4141
const moduleData = (currentPath.methodName)? require(modulePath)[currentPath.methodName] : require(modulePath);
42-
webpackContext.addDependency(modulePath)
42+
webpackContext.addDependency(modulePath);
4343
return Object.assign(accumulator, moduleData);
4444
}, {});
4545
},

0 commit comments

Comments
 (0)