- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
export * from "./config.ts";
|
|
export * from "./constraint.ts";
|
|
export * from "./generic.ts";
|
|
export * from "./intrinsic.ts";
|
|
export * from "./kinds.ts";
|
|
export * from "./module.ts";
|
|
export * from "./node.ts";
|
|
export * from "./parse.ts";
|
|
export * from "./predicate.ts";
|
|
export * from "./refinements/after.ts";
|
|
export * from "./refinements/before.ts";
|
|
export * from "./refinements/divisor.ts";
|
|
export * from "./refinements/exactLength.ts";
|
|
export * from "./refinements/kinds.ts";
|
|
export * from "./refinements/max.ts";
|
|
export * from "./refinements/maxLength.ts";
|
|
export * from "./refinements/min.ts";
|
|
export * from "./refinements/minLength.ts";
|
|
export * from "./refinements/pattern.ts";
|
|
export * from "./refinements/range.ts";
|
|
export * from "./roots/domain.ts";
|
|
export * from "./roots/intersection.ts";
|
|
export * from "./roots/morph.ts";
|
|
export * from "./roots/proto.ts";
|
|
export * from "./roots/root.ts";
|
|
export * from "./roots/union.ts";
|
|
export * from "./roots/unit.ts";
|
|
export * from "./scope.ts";
|
|
export * from "./shared/compile.ts";
|
|
export * from "./shared/declare.ts";
|
|
export * from "./shared/disjoint.ts";
|
|
export * from "./shared/errors.ts";
|
|
export * from "./shared/implement.ts";
|
|
export * from "./shared/intersections.ts";
|
|
export * from "./shared/jsonSchema.ts";
|
|
export * from "./shared/registry.ts";
|
|
export * from "./shared/standardSchema.ts";
|
|
export * from "./shared/toJsonSchema.ts";
|
|
export * from "./shared/traversal.ts";
|
|
export * from "./shared/utils.ts";
|
|
export * from "./structure/index.ts";
|
|
export * from "./structure/optional.ts";
|
|
export * from "./structure/prop.ts";
|
|
export * from "./structure/required.ts";
|
|
export * from "./structure/sequence.ts";
|
|
export * from "./structure/structure.ts";
|
|
export { ParseError } from "@ark/util";
|