- 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
38 lines
884 B
JavaScript
38 lines
884 B
JavaScript
/*
|
|
@license
|
|
Rollup.js v4.57.1
|
|
Fri, 30 Jan 2026 08:13:08 GMT - commit d37675f25150d6a94dcf4138853bdc2ecb3ce57b
|
|
|
|
https://github.com/rollup/rollup
|
|
|
|
Released under the MIT License.
|
|
*/
|
|
'use strict';
|
|
|
|
let fsEvents;
|
|
let fsEventsImportError;
|
|
async function loadFsEvents() {
|
|
try {
|
|
({ default: fsEvents } = await import('fsevents'));
|
|
}
|
|
catch (error) {
|
|
fsEventsImportError = error;
|
|
}
|
|
}
|
|
// A call to this function will be injected into the chokidar code
|
|
function getFsEvents() {
|
|
if (fsEventsImportError)
|
|
throw fsEventsImportError;
|
|
return fsEvents;
|
|
}
|
|
|
|
const fseventsImporter = /*#__PURE__*/Object.defineProperty({
|
|
__proto__: null,
|
|
getFsEvents,
|
|
loadFsEvents
|
|
}, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
exports.fseventsImporter = fseventsImporter;
|
|
exports.loadFsEvents = loadFsEvents;
|
|
//# sourceMappingURL=fsevents-importer.js.map
|