- 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
JavaScript
48 lines
1.7 KiB
JavaScript
export * from "./config.js";
|
|
export * from "./constraint.js";
|
|
export * from "./generic.js";
|
|
export * from "./intrinsic.js";
|
|
export * from "./kinds.js";
|
|
export * from "./module.js";
|
|
export * from "./node.js";
|
|
export * from "./parse.js";
|
|
export * from "./predicate.js";
|
|
export * from "./refinements/after.js";
|
|
export * from "./refinements/before.js";
|
|
export * from "./refinements/divisor.js";
|
|
export * from "./refinements/exactLength.js";
|
|
export * from "./refinements/kinds.js";
|
|
export * from "./refinements/max.js";
|
|
export * from "./refinements/maxLength.js";
|
|
export * from "./refinements/min.js";
|
|
export * from "./refinements/minLength.js";
|
|
export * from "./refinements/pattern.js";
|
|
export * from "./refinements/range.js";
|
|
export * from "./roots/domain.js";
|
|
export * from "./roots/intersection.js";
|
|
export * from "./roots/morph.js";
|
|
export * from "./roots/proto.js";
|
|
export * from "./roots/root.js";
|
|
export * from "./roots/union.js";
|
|
export * from "./roots/unit.js";
|
|
export * from "./scope.js";
|
|
export * from "./shared/compile.js";
|
|
export * from "./shared/declare.js";
|
|
export * from "./shared/disjoint.js";
|
|
export * from "./shared/errors.js";
|
|
export * from "./shared/implement.js";
|
|
export * from "./shared/intersections.js";
|
|
export * from "./shared/jsonSchema.js";
|
|
export * from "./shared/registry.js";
|
|
export * from "./shared/standardSchema.js";
|
|
export * from "./shared/toJsonSchema.js";
|
|
export * from "./shared/traversal.js";
|
|
export * from "./shared/utils.js";
|
|
export * from "./structure/index.js";
|
|
export * from "./structure/optional.js";
|
|
export * from "./structure/prop.js";
|
|
export * from "./structure/required.js";
|
|
export * from "./structure/sequence.js";
|
|
export * from "./structure/structure.js";
|
|
export { ParseError } from "@ark/util";
|