- 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
37 lines
1.5 KiB
JavaScript
37 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.OP_YIELD = exports.OP_WITH_RUNTIME = exports.OP_WHILE = exports.OP_UPDATE_RUNTIME_FLAGS = exports.OP_TAG = exports.OP_SYNC = exports.OP_SUCCESS = exports.OP_REVERT_FLAGS = exports.OP_ON_SUCCESS_AND_FAILURE = exports.OP_ON_SUCCESS = exports.OP_ON_FAILURE = exports.OP_ITERATOR = exports.OP_FAILURE = exports.OP_COMMIT = exports.OP_ASYNC = void 0;
|
|
/** @internal */
|
|
const OP_ASYNC = exports.OP_ASYNC = "Async";
|
|
/** @internal */
|
|
const OP_COMMIT = exports.OP_COMMIT = "Commit";
|
|
/** @internal */
|
|
const OP_FAILURE = exports.OP_FAILURE = "Failure";
|
|
/** @internal */
|
|
const OP_ON_FAILURE = exports.OP_ON_FAILURE = "OnFailure";
|
|
/** @internal */
|
|
const OP_ON_SUCCESS = exports.OP_ON_SUCCESS = "OnSuccess";
|
|
/** @internal */
|
|
const OP_ON_SUCCESS_AND_FAILURE = exports.OP_ON_SUCCESS_AND_FAILURE = "OnSuccessAndFailure";
|
|
/** @internal */
|
|
const OP_SUCCESS = exports.OP_SUCCESS = "Success";
|
|
/** @internal */
|
|
const OP_SYNC = exports.OP_SYNC = "Sync";
|
|
/** @internal */
|
|
const OP_TAG = exports.OP_TAG = "Tag";
|
|
/** @internal */
|
|
const OP_UPDATE_RUNTIME_FLAGS = exports.OP_UPDATE_RUNTIME_FLAGS = "UpdateRuntimeFlags";
|
|
/** @internal */
|
|
const OP_WHILE = exports.OP_WHILE = "While";
|
|
/** @internal */
|
|
const OP_ITERATOR = exports.OP_ITERATOR = "Iterator";
|
|
/** @internal */
|
|
const OP_WITH_RUNTIME = exports.OP_WITH_RUNTIME = "WithRuntime";
|
|
/** @internal */
|
|
const OP_YIELD = exports.OP_YIELD = "Yield";
|
|
/** @internal */
|
|
const OP_REVERT_FLAGS = exports.OP_REVERT_FLAGS = "RevertFlags";
|
|
//# sourceMappingURL=effect.js.map
|