Skip to content

named defines

Choose a tag to compare

@ansuz ansuz released this 03 Sep 14:10
· 24 commits to main since this release

Breaking changes from previous versions

  1. Promises are no longer polyfilled by this module. You will need to polyfill it yourself if you support Internet Explorer or other JS contexts where Promises are not present
  2. The module now uses named defines in the context of requirejs, so you'll need to specify its path to use it:
require.config({
    paths: {
        'netflux-client': '/path/to/module'
    }
});