Skip to content

Commit

Permalink
Add end of statement semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
howdy39 committed Mar 21, 2018
1 parent 3024078 commit d628f90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/web/JsonpMainTemplatePlugin.js
Expand Up @@ -203,7 +203,7 @@ class JsonpMainTemplatePlugin {
"function webpackJsonpCallback(data) {",
Template.indent([
"var chunkIds = data[0];",
"var moreModules = data[1]",
"var moreModules = data[1];",
withDefer ? "var executeModules = data[2];" : "",
'// add "moreModules" to the modules object,',
'// then flag all "chunkIds" as loaded and fire callback',
Expand Down
4 changes: 2 additions & 2 deletions test/statsCases/module-deduplication-named/expected.txt
Expand Up @@ -3,8 +3,8 @@ async3.js 818 bytes 0 [emitted] async3
async1.js 818 bytes 1 [emitted] async1
async2.js 818 bytes 2 [emitted] async2
e1.js 8.02 KiB 3 [emitted] e1
e2.js 8.04 KiB 4 [emitted] e2
e3.js 8.06 KiB 5 [emitted] e3
e2.js 8.05 KiB 4 [emitted] e2
e3.js 8.07 KiB 5 [emitted] e3
Entrypoint e1 = e1.js
Entrypoint e2 = e2.js
Entrypoint e3 = e3.js
Expand Down

0 comments on commit d628f90

Please sign in to comment.