- Added support for both named exports and explicit .js paths for binary_to_base58 and base58_to_binary modules.
- Consumers can now import modules either without the .js extension or with it directly:
import binaryToBase58 from "base58-js/binary_to_base58";
import binaryToBase58 from "base58-js/binary_to_base58.js";
- Changed testing suite to mocha/chai.
- removed size-limit.
- Depen updates
- TypeScript declaration files (.d.ts) have been added for all public modules.
- Support for node >=14.0.0 & npm >=7.0.0.
- Imports now favours dropping the file extension.
- Refined exports Field: Simplified the module exports by removing the .mjs and .js extensions from the paths. Now, users can import modules without needing to specify the file extension.
- paydevs registry
- IntelliSense via JSDoc Reference
- Fixes #3
- Changelog fixes.
- Deprecation warning not actually fixed... again 😅.
- Changelog updates.
- Changelog updates.
- Fixes #2.
- Dev dependency updates.
package.json
files removed static from white list.- Updated readme to reflects base58-js instead of base58.
- Updated description.
- size-limit fix, using
@size-limit/preset-small-lib
.
Initial Release.