- 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
670 B
JavaScript
37 lines
670 B
JavaScript
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = void 0;
|
|
|
|
var SimpleSet = /*#__PURE__*/function () {
|
|
function SimpleSet() {
|
|
this.v = [];
|
|
}
|
|
|
|
var _proto = SimpleSet.prototype;
|
|
|
|
_proto.clear = function clear() {
|
|
this.v.length = 0;
|
|
};
|
|
|
|
_proto.has = function has(k) {
|
|
return this.v.indexOf(k) !== -1;
|
|
};
|
|
|
|
_proto.add = function add(k) {
|
|
if (this.has(k)) return;
|
|
this.v.push(k);
|
|
};
|
|
|
|
_proto.delete = function _delete(k) {
|
|
var idx = this.v.indexOf(k);
|
|
if (idx === -1) return false;
|
|
this.v.splice(idx, 1);
|
|
return true;
|
|
};
|
|
|
|
return SimpleSet;
|
|
}();
|
|
|
|
exports.default = SimpleSet;
|
|
module.exports = exports.default; |