Skip to content

Commit 65d0458

Browse files
author
Dan Schuman
committed
Fix errors due to missing semicolon
1 parent 4f9543a commit 65d0458

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/loader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = function(content, map) {
8585

8686
var exportJs = compileExports(result, importItemMatcher.bind(this), camelCaseKeys);
8787
if (exportJs) {
88-
exportJs = "exports.locals = " + exportJs;
88+
exportJs = "exports.locals = " + exportJs + ";";
8989
}
9090

9191
var moduleJs;

lib/localsLoader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = function(content) {
3737

3838
var exportJs = compileExports(result, importItemMatcher.bind(this), camelCaseKeys);
3939
if (exportJs) {
40-
exportJs = "module.exports = " + exportJs;
40+
exportJs = "module.exports = " + exportJs + ";";
4141
}
4242

4343

0 commit comments

Comments
 (0)