Skip to content

Releases: OpenNTF/dojo-webpack-plugin

v2.7.3

18 May 19:43
Compare
Choose a tag to compare
  • 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

06 Apr 12:31
Compare
Choose a tag to compare
  • Fix bug causing failure in IE9
  • Support client-side require without a callback function.

v2.7.1

26 Mar 16:27
Compare
Choose a tag to compare
  • 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

21 Mar 18:34
Compare
Choose a tag to compare
  • Add webpack 4 support
  • Support arbitrary runtime expressions (not just identifiers) in require calls

v2.6.1

15 Mar 19:11
Compare
Choose a tag to compare

Fix Object.defineProperties error when using webpack-dev-server

v2.6.0

02 Mar 19:15
Compare
Choose a tag to compare

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

13 Feb 22:05
3e3d0ca
Compare
Choose a tag to compare

v2.4.1

23 Jan 15:58
Compare
Choose a tag to compare

Remove Object.assign() from generated code (not supported on IE11).

v2.4.0

10 Jan 22:07
Compare
Choose a tag to compare

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

05 Jan 13:52
Compare
Choose a tag to compare
  • Fix issue with using html-webpack-plugin
  • DojoES6Promise polyfil now throws in constructor rather than rejecting promise to be more consistent with ES6 implementation.