Skip to content

Commit

Permalink
[fix]else callback
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderXL committed Jul 15, 2024
1 parent 1acab20 commit 3d9ab80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/webpack-plugin/lib/resolver/DynamicRuntimePlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ module.exports = class DynamicRuntimePlugin {
if (matchCondition(resourcePath, matcher)) {
request.path = addInfix(request.path, 'empty', extname)
resolver.doResolve(target, request, 'resolve dynamicRenderMixin empty file', resolveContext, callback)
} else {
callback()
}
callback()
})
}
}

0 comments on commit 3d9ab80

Please sign in to comment.