forked from yvv/decision
- stores/collective.ts (état local-first, gabarits, import/export, seeds) + stores/decisions.ts (cycle de vie complet : capture→chemin→fenêtres→ sessions→cristallisation→épreuve du réel→révocation) - data/templates.ts : 7 gabarits (Page blanche observatoire-d'abord, 5 points de départ, Institution symétrique) - composables useFeed (13 sections du Fil en sélecteurs purs) + useSearch (index unique Cmd+K/Q0) - shell : layouts default/bare, app.vue mince, useMood v2 (Source/Margelle/ Nappe/Minuit), sceau 井 = logo, LdWorkspaceSelector avec finalité A1, LdAvatarStack (premier/second lieu), LdCountdown (suspension striée) - 338 tests vitest verts, npm run build zéro erreur Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
/**
|
|
* Pure engine barrel — the SINGLE import surface of app/engine/.
|
|
*
|
|
* Re-exports EVERYTHING (functions, constants and types) from the eight
|
|
* pure modules. Stores and components import from '~/engine' (or relative
|
|
* '../engine') and never reach into individual files.
|
|
*/
|
|
|
|
export * from './threshold'
|
|
export * from './nuanced'
|
|
export * from './modeParams'
|
|
export * from './parametric'
|
|
export * from './settings'
|
|
export * from './state'
|
|
export * from './triage'
|
|
export * from './impact'
|