https://github.com/rubriclab/ui
https://github.com/rubriclab/ui
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rubriclab/ui
- Owner: RubricLab
- License: other
- Created: 2024-05-16T00:03:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-14T18:16:32.000Z (12 months ago)
- Last Synced: 2025-02-25T00:26:43.436Z (11 months ago)
- Language: TypeScript
- Homepage: https://ui.rubric.sh
- Size: 944 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# rubricui
## Description
This project is a UI component library built with React and TypeScript.
To build the package, available under dist, run:
```sh
bun install
bun run build
```
## Test locally
Use Bun's linking commands to create a symlink between your library and the project where you want to test it, run in your package:
```sh
bun link
```
In your test project, run:
```sh
bun link rubricui
bunx rubricui init
```
While working on your library, run the watch script to automatically rebuild your library on changes:
```sh
bun run watch
```
## Publish
To publish a new version, bump the version number and run
```sh
npm publish
```