mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 05:39:40 +02:00
Generic factory that eliminates ~110 LOC boilerplate per module for view mode, sort, filters, and saved filter presets with localStorage persistence. Includes 23 tests covering all store operations. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
185 B
TypeScript
5 lines
185 B
TypeScript
/** Mock for $app/environment — always acts as browser in tests */
|
|
export const browser = true;
|
|
export const building = false;
|
|
export const dev = true;
|
|
export const version = 'test';
|