Files
headroom/frontend/node_modules/effect/dist/esm/Console.js
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- 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
2026-02-17 16:19:59 -05:00

118 lines
2.1 KiB
JavaScript

import * as internal from "./internal/console.js";
import * as defaultConsole from "./internal/defaultServices/console.js";
/**
* @since 2.0.0
* @category type ids
*/
export const TypeId = defaultConsole.TypeId;
/**
* @since 2.0.0
* @category context
*/
export const Console = defaultConsole.consoleTag;
/**
* @since 2.0.0
* @category default services
*/
export const withConsole = internal.withConsole;
/**
* @since 2.0.0
* @category default services
*/
export const setConsole = internal.setConsole;
/**
* @since 2.0.0
* @category accessor
*/
export const consoleWith = internal.consoleWith;
/**
* @since 2.0.0
* @category accessor
*/
export const assert = internal.assert;
/**
* @since 2.0.0
* @category accessor
*/
export const clear = internal.clear;
/**
* @since 2.0.0
* @category accessor
*/
export const count = internal.count;
/**
* @since 2.0.0
* @category accessor
*/
export const countReset = internal.countReset;
/**
* @since 2.0.0
* @category accessor
*/
export const debug = internal.debug;
/**
* @since 2.0.0
* @category accessor
*/
export const dir = internal.dir;
/**
* @since 2.0.0
* @category accessor
*/
export const dirxml = internal.dirxml;
/**
* @since 2.0.0
* @category accessor
*/
export const error = internal.error;
/**
* @since 2.0.0
* @category accessor
*/
export const group = internal.group;
/**
* @since 2.0.0
* @category accessor
*/
export const info = internal.info;
/**
* @since 2.0.0
* @category accessor
*/
export const log = internal.log;
/**
* @since 2.0.0
* @category accessor
*/
export const table = internal.table;
/**
* @since 2.0.0
* @category accessor
*/
export const time = internal.time;
/**
* @since 2.0.0
* @category accessor
*/
export const timeLog = internal.timeLog;
/**
* @since 2.0.0
* @category accessor
*/
export const trace = internal.trace;
/**
* @since 2.0.0
* @category accessor
*/
export const warn = internal.warn;
/**
* @since 2.0.0
* @category accessor
*/
export const withGroup = internal.withGroup;
/**
* @since 2.0.0
* @category accessor
*/
export const withTime = internal.withTime;
//# sourceMappingURL=Console.js.map