- 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
821 B
JavaScript
19 lines
821 B
JavaScript
import * as AST from "./ast/index.js";
|
|
import { traverseNodes } from "./traverse.js";
|
|
import { KEYS } from "./visitor-keys.js";
|
|
import { ParseError } from "./errors.js";
|
|
export { parseForESLint, } from "./parser/index.js";
|
|
export { name } from "./meta.js";
|
|
// If we use `export * as meta from "./meta.js"`,
|
|
// the structuredClone performed by eslint-plugin-prettier will fail,
|
|
// so we will need to re-export it as a plain object.
|
|
// https://github.com/prettier/eslint-plugin-prettier/blob/b307125faeb58b6dbfd5d8812b2dffcfdc8358df/eslint-plugin-prettier.js#L199
|
|
import * as metaModule from "./meta.js";
|
|
export const meta = { ...metaModule };
|
|
export { AST, ParseError };
|
|
// Keys
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention -- ignore
|
|
export const VisitorKeys = KEYS;
|
|
// tools
|
|
export { traverseNodes };
|