@omnix-lang/planner
v0.1.1
Published
Orchestrates build routing and manifests for the Omnix Compiler
Readme
@omnix-lang/planner
Internal — This package is not published to npm. It is used within the Omnix monorepo.
Route planning and manifest generation for Omnix. Scans route directories via the NAPI compiler, builds RPC handler indexes, and generates web/native route manifests, TypeScript declaration files, and static CSS aggregation.
Import
import { OmnixPlanner, type RouteEntry, type RouteManifest } from '@omnix-lang/planner';Usage (within workspace)
import { OmnixPlanner } from '@omnix-lang/planner';
const planner = new OmnixPlanner('./src/app/routes');
await planner.init();
const webManifest = planner.getWebManifest();
const nativeManifest = planner.getReactNativeManifest();
const routesDts = planner.getRoutesDts();
const css = planner.getStaticCSS();API Reference
API documentation is generated by TypeDoc. Run pnpm docs to generate locally.
