Skip to content

runlyio/ui

Repository files navigation

Runly UI

Javascript components to connect to Runly

This repository is a monorepo for all of the JS component libraries that connect to runly. It currently contains:

  • core: Core components to connect to Runly
  • bootstrap: Bootstrap-styled react components to connect to Runly
  • material: Runly components implemented with Material UI
  • html: Prebuilt script that can be dropped on any HTML page to include Runly components
  • Examples: Example applications that incorporate each set of runly.js components

Learn how to integrate Runly UI into your application.

📒 Release Notes

See CHANGELOG.md.

📝 License

Licensed under the MIT License.

🚀 Running Locally

After cloning this repo, run the following in a terminal:

npm install
npm run bootstrap

This will install dependencies and link local dependencies together using Lerna.

To lint the whole workspace:

npm run lint

:shipit: Publishing

To publish all changed packages, first make sure to update the changelog, then run:

npx lerna publish

This will ask you for a major/minor/patch version bump for each changed package since the last release. It will then publish the changes to npm, tag the release, and push all the changes to the repo.