7993ecc6d6
CI / test (push) Has been cancelled
Phase 2 of PulseDatabase abstraction: - Create @uncaged/pulse-local with bun:sqlite implementation - Core @uncaged/pulse now exports types only for store (no createStore/createScopedStore) - Update pulse-workflows, upulse to import factories from @uncaged/pulse-local - All tests passing (267 core, 39 pulse-workflows)
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
/**
|
|
* @uncaged/pulse-local — Local (bun:sqlite + node:fs) implementation of Pulse storage.
|
|
*
|
|
* Re-exports all core types from @uncaged/pulse plus local factory functions.
|
|
*/
|
|
|
|
// Re-export everything from core
|
|
export * from '@uncaged/pulse';
|
|
|
|
// Export local factories (override core's type-only createStore/createScopedStore)
|
|
export { createStore, createScopedStore } from './store-local.js';
|