Releases: OpenNTF/dojo-webpack-plugin
Releases · OpenNTF/dojo-webpack-plugin
v2.7.3
- Fix memory leak when using watch mode or
webpack-dev-server
- Fix script error on IE9
- Fix compatibility issue with Webpack DLLPlugin
- Fix define-without-callback support
v2.7.2
- Fix bug causing failure in IE9
- Support client-side require without a callback function.
v2.7.1
- Fix issue with webpack-html-plugin complaining that
window
is not defined. - Avoid pulling in node dependencies for Dojo modules that reference
process
,global
, etc.
v2.7.0
- Add webpack 4 support
- Support arbitrary runtime expressions (not just identifiers) in require calls
v2.6.1
Fix Object.defineProperties error when using webpack-dev-server
v2.6.0
Fix resolution of relative paths when using global require. Relative paths are now resolved against the path specified by the globalContext options, or the webpack compiler context, rather than the context of the module that includes the require call.
v2.5.0
- Add ScopedRequirePlugin for using to avoid defining global require
- Improve support for run-time identifiers in dependency arrays
- Add support for the
dojo-undef-api
feature.
v2.4.1
Remove Object.assign() from generated code (not supported on IE11).
v2.4.0
Modules are now resolved using paths, packages, etc. defined in the Dojo config ahead of those defined in the webpack config. In prior releases, modules would be resolve using the webpack config first, and then the Dojo config.
v2.3.4
- Fix issue with using html-webpack-plugin
- DojoES6Promise polyfil now throws in constructor rather than rejecting promise to be more consistent with ES6 implementation.