All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
2.4.0 (2018-11-30)
- pgk: use es for modern js, change module field for es5 + esmodule (771f71b)
2.3.1 (2018-11-17)
2.3.0 (2018-11-17)
- env: define envs that we support (3d9563f)
2.2.1 (2018-11-03)
2.2.0 (2018-11-02)
- module: export boundMethod and boundClass as modules (9edeabf)
2.1.0 (2017-07-01)
- core: allow user set new value (98968ee)
Use babel 6 to compile source.
If you use autobind-decorator 2.x in CommonJS environment, don’t forget to add .default
to your import:
- const autobind = require('autobind-decorator')
+ const autobind = require('autobind-decorator').default
If you used ES modules, you’re already all good:
import autobind from 'autobind-decorator' // no changes here 😀