Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/igorkamyshev/withease
A set of libraries and recipes to make frontend development easier thanks to Effector
https://github.com/igorkamyshev/withease
effector i18next reactivity web-api
Last synced: 16 days ago
JSON representation
A set of libraries and recipes to make frontend development easier thanks to Effector
- Host: GitHub
- URL: https://github.com/igorkamyshev/withease
- Owner: igorkamyshev
- License: mit
- Created: 2022-12-11T10:48:28.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T05:44:45.000Z (9 months ago)
- Last Synced: 2024-05-01T17:35:10.340Z (9 months ago)
- Topics: effector, i18next, reactivity, web-api
- Language: TypeScript
- Homepage: https://withease.pages.dev
- Size: 1.05 MB
- Stars: 28
- Watchers: 3
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# With Ease
A set of libraries and recipes to make frontend development easier thanks to Effector.
## Maintains
### Getting started
- clone repo
- install deps via `pnpm install`
- make changes
- make sure that your changes is passing checks:
- run tests via `pnpm run -r test:run`
- try to build it via `pnpm run -r build`
- format code via `pnpm run format:check`
- fill in changes via `pnpm changeset`
- open a PR
- enjoy 🎉### Release workflow
Releases of With Ease are automated by [changesets](https://github.com/changesets/changesets) and GitHub Actions. Your only duty is creating changeset for every PR, it is controlled by [Changes-action](./.github/workflows/changes.yml).
After merging PR to master-branch, [Version-action](./.github/workflows/version.yml) will update special PR with the next release. To publish this release, just merge special PR and wait, [Release-action](./.github/workflows/release.yml) will publish packages.
### Repository management
#### New package creation
Copy-paste `packages/web-api` directory, rename it to the package name. Then, update `package.json`, `README.md` and `vite.config.js` files. Then, delete `CHANGELOG.md` file and any other files that are not needed in the new package.
Fancy generator will be added in the future.