Files
hapi/cli/src/bootstrap.ts
T
weishu cf04937355 feat(cli): refactor embedded assets with Bun-specific and stub implementations
Split embedded assets loading into runtime-specific variants using package.json imports field. Bun-compiled binaries use the full implementation with file assets, while stub fallback provides clear error for non-Bun runtimes.
2025-12-20 23:46:02 +08:00

7 lines
142 B
TypeScript

// Disable Ink devtools in compiled binaries to avoid optional dependencies.
process.env.DEV = 'false';
await import('./index');
export {};