├── .vscode └── settings.json ├── README.md ├── deno.json ├── mod.ts ├── src ├── deps.ts └── mod.ts └── tests └── fixture ├── README.md ├── deno.json ├── dev.ts ├── fresh.gen.ts ├── import_map.json ├── islands └── Form.tsx ├── main.ts ├── routes ├── _middleware.ts ├── form-data.tsx ├── index.tsx ├── json.tsx └── search-params.tsx ├── shapes └── test.ts └── static ├── favicon.ico └── logo.svg /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/README.md -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/deno.json -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- 1 | export * from "./src/mod.ts"; 2 | -------------------------------------------------------------------------------- /src/deps.ts: -------------------------------------------------------------------------------- 1 | export * from "https://deno.land/x/zod@v3.17.10/mod.ts"; 2 | -------------------------------------------------------------------------------- /src/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/src/mod.ts -------------------------------------------------------------------------------- /tests/fixture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/README.md -------------------------------------------------------------------------------- /tests/fixture/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/deno.json -------------------------------------------------------------------------------- /tests/fixture/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/dev.ts -------------------------------------------------------------------------------- /tests/fixture/fresh.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/fresh.gen.ts -------------------------------------------------------------------------------- /tests/fixture/import_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/import_map.json -------------------------------------------------------------------------------- /tests/fixture/islands/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/islands/Form.tsx -------------------------------------------------------------------------------- /tests/fixture/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/main.ts -------------------------------------------------------------------------------- /tests/fixture/routes/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/routes/_middleware.ts -------------------------------------------------------------------------------- /tests/fixture/routes/form-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/routes/form-data.tsx -------------------------------------------------------------------------------- /tests/fixture/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/routes/index.tsx -------------------------------------------------------------------------------- /tests/fixture/routes/json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/routes/json.tsx -------------------------------------------------------------------------------- /tests/fixture/routes/search-params.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/routes/search-params.tsx -------------------------------------------------------------------------------- /tests/fixture/shapes/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/shapes/test.ts -------------------------------------------------------------------------------- /tests/fixture/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/static/favicon.ico -------------------------------------------------------------------------------- /tests/fixture/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/fresh-validation/HEAD/tests/fixture/static/logo.svg --------------------------------------------------------------------------------