Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.16 KB

git.README.md

File metadata and controls

54 lines (35 loc) · 1.16 KB

LI.FI - Types

Types for LI.FI projects

Summary

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

Install dependencies with yarn:

yarn install

Test

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

Build production (distribution) files in your dist folder:

yarn build

Release

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