0.0.5 β€’ Published 2 years ago

redqui v0.0.5

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

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.