- 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
19 lines
612 B
JavaScript
19 lines
612 B
JavaScript
import * as Cause from "../Cause.js";
|
|
import { dual } from "../Function.js";
|
|
import * as HashMap from "../HashMap.js";
|
|
import * as List from "../List.js";
|
|
import * as core from "./core.js";
|
|
import * as fiberId_ from "./fiberId.js";
|
|
import * as fiberRefs from "./fiberRefs.js";
|
|
/** @internal */
|
|
export const test = /*#__PURE__*/dual(2, (self, input) => self.log({
|
|
fiberId: fiberId_.none,
|
|
logLevel: core.logLevelInfo,
|
|
message: input,
|
|
cause: Cause.empty,
|
|
context: fiberRefs.empty(),
|
|
spans: List.empty(),
|
|
annotations: HashMap.empty(),
|
|
date: new Date()
|
|
}));
|
|
//# sourceMappingURL=logger-circular.js.map
|