redqui
v0.0.5
Published
π Beautiful, fast and modern React UI library. Designed to integrate beautifully with Tailwind CSS. RedQ UI built with `React`, `Tailwind CSS` & `Typescript`.
Downloads
1
Readme
RedQ UI Introduction
π Beautiful, fast and modern React UI library. Designed to integrate beautifully with Tailwind CSS. RedQ UI built with React
, Tailwind CSS
& Typescript
.
About
Focus on your component architecture and just create, bundle & publish your React packages with ease. React
, Typescript
, Tailwind CSS
, Jest
& Storybook
support out of the box. Integrates with Github releases and automatically publishes to NPM. Code bundled with tsup
.
What's included?
- πReact - React is a free and open-source front-end JavaScript library for building user interfaces based on UI components.
- πTailwind CSS - Tailwind CSS is an open source CSS framework.
- β²Typescript - TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
- β‘οΈtsup - The simplest and fastest way to bundle your TypeScript libraries. Used to bundle package as ESM and CJS modules.
- π Storybook - Build UI components and pages in isolation. It streamlines UI development, testing, and documentation.
- π§ͺ Jest - A testing framework for JavaScript. Preconfigured to work with TypeScript and JSX.
- πΌ Release-it - release-it is a command line tool to automatically generate a new GitHub Release and populates it with the changes (commits) made since the last release.
- π Test & Publish via Github Actions - CI/CD workflows for your package. Run tests on every commit plus integrate with Github Releases to automate publishing package to NPM and Storybook to Github Pages.
- π Commitizen β When you commit with Commitizen, you'll be prompted to fill out any required commit fields at commit time.
- π Commitlint β Checks that your commit messages meet the conventional commit format.
- πΆ Husky β Running scripts before committing.
- π« lint-staged β Run linters on git staged files
- π Renovate - Universal dependency update tool that fits into your workflows. Configured to periodically check your dependencies for updates and send automated pull requests.
- βοΈ ESLint - A linter for JavaScript. Includes a simple configuration for React projects based on the recommended ESLint and AirBnB configs.
Usage
Developing
Watch and rebuild code with tsup
and runs Storybook to preview your UI during development.
yarn dev
Run tests with jest
when changes are detected.
yarn test:watch
To run all tests once without watching for changes.
yarn test
Build package with tsup
for production.
yarn build
Committing
When you are ready to commit simply run the following command to get a well formatted commit message. All staged files will automatically be linted and fixed as well.
yarn commit
Publishing
Create a semantic version tag and publish to Github Releases. When a new release is detected a Github Action will automatically build the package and publish it to NPM. Additionally, a Storybook will be published to Github pages.
Learn more about how to use the release-it
command here.
yarn release
βImportant note: in order to publish package to NPM you must add your token as a Github Action secret. Learn more on how to configure your repository and publish packages through Github Actions here.