Skip to content

Latest commit

 

History

History
75 lines (35 loc) · 2.07 KB

CHANGELOG.md

File metadata and controls

75 lines (35 loc) · 2.07 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.4.0 (2018-11-30)

Features

  • 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)

Features

  • env: define envs that we support (3d9563f)

2.2.1 (2018-11-03)

Bug Fixes

  • typescript: definition for exported new methods (#71) (0cc3477)

2.2.0 (2018-11-02)

Features

  • module: export boundMethod and boundClass as modules (9edeabf)

2.1.0 (2017-07-01)

Bug Fixes

  • core: allow user set new value (98968ee)

2.0.0

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 😀