1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

dynamic-entry-plugin: fix hasEntry

This commit is contained in:
nkzawa 2016-10-24 10:55:25 +09:00
parent 7dfc298859
commit 61dc5137f5

View file

@ -38,7 +38,7 @@ function removeEntry (name = 'main') {
}
function hasEntry (name = 'main') {
this.entryNames.has(name)
return this.entryNames.has(name)
}
function createCompilation (original) {