Skip to content

Commit

Permalink
chore: add readmes to prep for alpha release
Browse files Browse the repository at this point in the history
  • Loading branch information
airjp73 committed Jun 9, 2024
1 parent 9f9e8a5 commit 53df8a4
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 17 deletions.
10 changes: 10 additions & 0 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# RVF React

The core implementation of [RVF](https://github.com/airjp73/remix-validated-form).
This is primarily used internally by the other adapters.
It isn't recommended for use by most people.

## ALPHA RELEASE

This is an alpha version. There WILL be breaking API changes.
Please feel free to experiment with it and give feedback, but don't use it in production.
5 changes: 2 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rvf/core",
"version": "6.0.0",
"version": "0.0.1",
"description": "Easy, predictable form state management for React",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
Expand All @@ -13,8 +13,7 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "cp ../../README.md ./README.md && npm run build",
"postpublish": "rm ./README.md",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit"
},
"author": {
Expand Down
9 changes: 9 additions & 0 deletions packages/react/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# RVF React

The React adapter for [RVF](https://github.com/airjp73/remix-validated-form).
This is the package you should use if you aren't using Remix.

## ALPHA RELEASE

This is an alpha version. There WILL be breaking API changes.
Please feel free to experiment with it and give feedback, but don't use it in production.
3 changes: 1 addition & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "cp ../../README.md ./README.md && npm run build",
"postpublish": "rm ./README.md",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit"
},
"author": {
Expand Down
9 changes: 9 additions & 0 deletions packages/remix/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# RVF Remix

The Remix adapter for [RVF](https://github.com/airjp73/remix-validated-form).
This is the package you should use if you are using Remix.

## ALPHA RELEASE

This is an alpha version. There WILL be breaking API changes.
Please feel free to experiment with it and give feedback, but don't use it in production.
3 changes: 1 addition & 2 deletions packages/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "cp ../../README.md ./README.md && npm run build",
"postpublish": "rm ./README.md",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit"
},
"author": {
Expand Down
9 changes: 5 additions & 4 deletions packages/yup/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# @rvf/yup
# RVF Yup

Yup adapter for [remix-validated-form](https://github.com/airjp73/remix-validated-form).
The Yup adapter for [RVF](https://github.com/airjp73/remix-validated-form).

## Docs
## ALPHA RELEASE

The docs are located a [remix-validated-form.io](https://www.remix-validated-form.io).
This is an alpha version. There WILL be breaking API changes.
Please feel free to experiment with it and give feedback, but don't use it in production.
2 changes: 1 addition & 1 deletion packages/yup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rvf/yup",
"version": "4.0.0",
"version": "0.0.1",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
Expand Down
9 changes: 5 additions & 4 deletions packages/zod/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# @rvf/zod
# RVF Zod

Zod adapter for [remix-validated-form](https://github.com/airjp73/remix-validated-form).
The Zod adapter for [RVF](https://github.com/airjp73/remix-validated-form).

## Docs
## ALPHA RELEASE

The docs are located a [remix-validated-form.io](https://www.remix-validated-form.io).
This is an alpha version. There WILL be breaking API changes.
Please feel free to experiment with it and give feedback, but don't use it in production.
2 changes: 1 addition & 1 deletion packages/zod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rvf/zod",
"version": "3.0.0",
"version": "0.0.1",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 53df8a4

Please sign in to comment.