Skip to content

2.5.6

Compare
Choose a tag to compare
@m-mujica m-mujica released this 04 Oct 21:14
· 57 commits to master since this release

This patch release fixes an issue where UMD detected as AMD would fail on runtime because the AMD module depends on exports. E.g:

(function (global, factory) {
	typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
	typeof define === 'function' && define.amd ? define(['exports'], factory) :  
	(factory((global.Kefir = global.Kefir || {})));
}(this, (function (exports) {
  exports.stuff = ...;
});

See #118