Changelog
0.22.0 (February 9, 2018)
.default
, so for runtimes like Node.js for all files in lib/**
. We have changed package.json:main
to point to /index.js
instead of /lib/index.js
as a convenience wrapper to expose mostly what was there before so behavior of const Radium = require('radium');
works mostly as it did before. Caveats:
require('radium')
in it you will need to change that to become require('radium').default
.const Enhancer = require('radium/lib/enhancer');
will need to be changed to const Enhancer = require('radium/lib/enhancer').default;
.es
ESM module export files.package.json:scripts.postinstall
task to correctly work for git-based dependencies.Changelog
0.21.2 (January 25, 2018)
Changelog
0.21.1 (January 18, 2018)
componentDidUpdate()
inherited method (#957).Changelog
0.21.0 (January 8, 2018)
resolveStyles
returns { extraRadiumStateKeys, element }
instead of just element
.Changelog
0.20.0 (January 8, 2018)
inline-style-prefixer
to version ^4.0.0
.Changelog
0.19.6 (October 5, 2017)
Changelog
0.19.5 (October 5, 2017)
peerDependencies
and update tests to React 16.Changelog
0.19.4 (July 21, 2017)
.babelrc
from published npm registry package.Changelog
0.19.3 (July 20, 2017)
publishr
from prod dependencies
in npm registry package.