Types for LI.FI projects
This package contains all common types for the LI.FI SDK. Learn more about LI.FI on (https://li.fi).
Check out the Changelog to see what changed in the last releases.
Install dependencies with yarn:
yarn install
Test your code with Jest framework:
yarn test
Note: Example TypeScript Package uses husky, pinst and commitlint to automatically execute test and lint commit message before every commit.
Build production (distribution) files in your dist folder:
yarn build
In order to release a new version of the package you have to run
yarn release
This will
- bump the version number according to the types of the last commits (i.e. if it is a major, minor or bug fix release)
- create a new git tag
- update the CHANGELOG.md
Afterwards, all you have to do is run
git push && git push --tags