https://github.com/invisiblehats/hatrack
The design system that powers our apps–built on Bootstrap
https://github.com/invisiblehats/hatrack
bootstrap storybook
Last synced: about 1 month ago
JSON representation
The design system that powers our apps–built on Bootstrap
- Host: GitHub
- URL: https://github.com/invisiblehats/hatrack
- Owner: invisiblehats
- License: mit
- Created: 2021-12-14T05:33:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T19:17:53.000Z (over 4 years ago)
- Last Synced: 2023-03-02T20:52:16.958Z (over 3 years ago)
- Topics: bootstrap, storybook
- Language: SCSS
- Homepage: https://invisiblehats.github.io/hatrack
- Size: 3.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

# @invisiblehats/hatrack
## Installation
Coming soon once the package is published.
## Development
### Running storybook
We use [Storybook](https://storybook.js.org/) to document our components and utilities included in Hatrack.
Start the app:
```bash
$ yarn storybook
```
The page should automagically open on its own. If not, it should be running at http://localhost:6006/
### Configuring yarn
When working on changes locally, you can tell `yarn` to use the local repo instead of the registry.
```bash
$ cd path/to/hatrack
$ yarn link
$ cd path/to/project
$ yarn link "@invisiblehats/hatrack"
```
Now your project will use the local version with your changes