Releases: georapbox/immutable-arrays
Releases · georapbox/immutable-arrays
v4.1.0
v4.0.0
BREAKING CHANGES
Remove default export in favor of named exports.
The following is NOT working aymore:
import immutableArrays from 'immutable-arrays';
Import the method you want to use instead:
import { push } from 'immutable-arrays';
OTHER CHANGES
- Fix missing build file path for UMD bundling in rollup configuration file
- Update
devDependencies
v3.0.1
v3.0.0
- Replaced Webpack with Rollup for bundling the library. As a result of this migration the library is now exported in
UMD
,CommonJS
andESM
formats. - The library does not export standalone modules. If you need to import only one method you can import a named export.
v2.0.2
v2.0.1
- Update
devDependencies
- Update
npm-run-all
to latest version to protect againstflatmap-stream
malicious dependency (mysticatea/npm-run-all#153)
v2.0.0
BREAKING CHANGES
The library's API has not breaking changes. All breaking changes refer to how the final distributed files are bundled and their locations in the project.
- All distributed files are located under the
dist/
directory instead oflib/
which was in v1.x.x. The UMD format is located underdist/umd/
directory and the CommonJS under thedist/commonjs/
directory. - The directory containing the distributed files is no longer included in GIT.
OTHER CHANGES
- All
devDependencies
are updated to latest versions. Updated Webpack to v4.x.x and Babel to v7.x.x. - The library is now exported in both UMD (as was in version 1.x.x) and CommonJS. For CommonJS, the library's methods are also exported as standalone functions in order to import only the ones you want for your project. Check the Usage section in README for more details.