Closed alu closed 8 years ago
Good catch, thanks. I've made the correction.
Thanks for fix!
I waiting for next version that are includes this fix :)
@niieani Do you have plan that release new version?
I'm working on some more fixes and thought I'd make them all before new releases, but I guess we could make a bugfix release with just this one change, since I don't know when I'll be ready with other fixes. @EisenbergEffect loader-webpack should be okay to release with this fix.
@niieani OK, Thank you for response!
@EisenbergEffect Please check this, because i can't upgrade to aurelia 1.x, depend on this issue.
@niieani I must have missed this somehow. Are you still good for a release?
@EisenbergEffect yes, let's do it! :) I was wondering why it didn't get released along with the recent updates.
Released!
Thanks!
This loader does try load any modules by webpack_require. The code is here.
Webpack always caches to information of module. Please look following sample (generated by webpack).
So, if you try
require.ensure
after__webpack_require__
, we can't get module exports.We have to delete the cache.
or check the module exists before
__webpack_require__
.Thank you.