/** * `@astrale-os/sdk/cli` — the `astrale-domain` CLI (dev | build | deploy) and * the dotenv secrets-file boundary, folded in from the former * `@astrale-os/devkit` package. * * Node-only: the CLI imports `node:fs`/`node:module`/`node:url` and runs under * Bun (it imports the project's `astrale.config.ts` directly). This subpath is * deliberately NOT re-exported from the package barrel — pulling it into the * isomorphic `.` entry would poison browser/worker bundlers that traverse every * re-export (the same rule that keeps `./server` and `./deploy` off the barrel). * The bin lives at `./bin`. */ export { run, parseArgs } from './run.js'; export { parseDotenv, loadDotenvFile, loadDeclaredSecrets } from './dotenv.js'; //# sourceMappingURL=index.d.ts.map