@moneytree/mt-link-javascript-sdk
v5.1.0
Published
Moneytree Link JavaScript SDK
Keywords
Readme
Moneytree Link JavaScript SDK
This is a library for browser client to help you integrate Moneytree tools such as My Account and the Vault without having to do worry about the complex configurations.
For SDK Users
Read the documentation for more information.
For SDK Maintainers
Requires Yarn 4. Run
npm install -g corepack && corepack enableto activate it.
yarn install
yarn lint # runs eslint
yarn test # runs all the tests
yarn build # bundles the libraryThere is a minimal sample application in the sample directory.
Documentation
yarn build:docs # bundles the documentation
yarn start:docs # Serves the documentationWe use docsify to serve the documentation landing page (docs/README.md) and typedoc to generate the API documentation (docs/types).
Publishing
To release a new version, run the commands below. The build and changelog are generated automatically as part of the version bump, no extra steps required.
npm version (patch|minor|major) # chose the right version bump based on the changes, see https://semver.org
git push origin <branch> --follow-tags
# after merging the PR to master
npm login
npm publish