Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nareshbhatia/react-force
Foundational components and utilities for React applications
https://github.com/nareshbhatia/react-force
Last synced: 27 days ago
JSON representation
Foundational components and utilities for React applications
- Host: GitHub
- URL: https://github.com/nareshbhatia/react-force
- Owner: nareshbhatia
- License: mit
- Created: 2020-05-07T05:33:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T23:14:53.000Z (over 3 years ago)
- Last Synced: 2024-10-04T15:35:27.371Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://nareshbhatia.github.io/react-force/
- Size: 13.5 MB
- Stars: 31
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Force
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![Travis](https://img.shields.io/travis/alexjoverm/typescript-library-starter.svg)](https://travis-ci.org/nareshbhatia/react-force)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)Foundational components for React applications
**Live demo:** https://nareshbhatia.github.io/react-force/
## Build Process
### Typical commits
Always do commits in conventional commit format. This step can be repeated any
number of times during the development process.```bash
git status
git add --all
yarn cz-commit # interactive conventional commit
git push
```### Release to NPM
```bash
# Make sure local build runs successfully
yarn build:local# Detemine which packages have changed
yarn changed# Go to each changed package.
# 1. Manually change the version number in package.json. Use semver.
# 2. Commit and push (see above)
# 3. Rebuild the package
yarn build:local# 4. Release to npm
npm publish# 5. Tag the release and push the tag to remote
```