- Replace Mocha and Chai with Jest for testing the library.
- Replace codecov with coveralls for tests coverage.
- Update
devDependencies
.
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';
- Fix missing build file path for UMD bundling in rollup configuration file
- Update
devDependencies
- Fixes issue #8
- 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.
- In
del
method if index is a negative number, return a copy of the original array. By just returning the original array (as of version 1.0.3) is dangerous for mutating the resulted array if the original is mutated.
- Update
devDependencies
- Update
npm-run-all
to latest version to protect againstflatmap-stream
malicious dependency (mysticatea/npm-run-all#153)
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.
- 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.
- Fixes issue #4. Do not copy array unnecessarily in
del
method if index is a negative number.
- Use the array spread operator in delete method.
- Keep devDependencies up to date.
- Keep devDependencies up to date.
- Minor documentation updates.
- Provide named exports for each API method. Now you can also import like this:
import {push} from 'immutable-arrays'
Change API methods' names to avoid redundancy. This was more of an issue when the library was used as a global in browser where someone would need to type immutableArrays.immutablePush()
.
Below is a list with the renamed methods:
immutablePush
renamed topush
;immutablePop
renamed topop
;immutableShift
renamed toshift
;immutableUnshift
renamed tounshift
;immutableSplice
renamed tosplice
;immutableReverse
renamed toreverse
;immutableSort
renamed tosort
;immutableDelete
renamed todel
;
- Include test coverage in build process
- Add test to cover scenario with all optional arguments being undefined for immutableSplice method
- Keep devDependencies up to date
- Add code climate integration
- Add test coverage report
- Fix bug while deleting an element at 0 index (#1)