- 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
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
import * as core from "./core.js";
|
|
/** @internal */
|
|
export const match = (concurrency, sequential, unbounded, bounded) => {
|
|
switch (concurrency) {
|
|
case undefined:
|
|
return sequential();
|
|
case "unbounded":
|
|
return unbounded();
|
|
case "inherit":
|
|
return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" ? unbounded() : concurrency > 1 ? bounded(concurrency) : sequential());
|
|
default:
|
|
return concurrency > 1 ? bounded(concurrency) : sequential();
|
|
}
|
|
};
|
|
/** @internal */
|
|
export const matchSimple = (concurrency, sequential, concurrent) => {
|
|
switch (concurrency) {
|
|
case undefined:
|
|
return sequential();
|
|
case "unbounded":
|
|
return concurrent();
|
|
case "inherit":
|
|
return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" || concurrency > 1 ? concurrent() : sequential());
|
|
default:
|
|
return concurrency > 1 ? concurrent() : sequential();
|
|
}
|
|
};
|
|
//# sourceMappingURL=concurrency.js.map
|