e30e75b5d4
Code Quality / Oxlint + Oxfmt (push) Waiting to run
Code Quality / Template Sync (push) Waiting to run
Code Quality / Build Changed Packages (push) Waiting to run
Code Quality / Test Changed Packages (push) Waiting to run
Deploy Expo Example / Deploy Production (push) Waiting to run
Deploy Ink Example / Deploy Production (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.12) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Waiting to run
Deploy Shadcn Registry / Deploy Production (push) Waiting to run
Template Metrics / LOC + Bundle Size (push) Waiting to run
Changesets / Create Version PR (push) Has been cancelled
@assistant-ui/x-buildutils
This package is an internal dependency of assistant-ui and does not follow semantic versioning. If you are not working inside this monorepo, you should use your own build pipeline instead.
What it provides
aui-buildCLI: invoked as"build": "aui-build"from every package'spackage.json. Compiles TypeScript with our shared strict config, validates that imports resolve to declaredexportssub-paths, and rewrites.tsimport specifiers to.jsso the emitted ESM works at runtime.ts/: sharedtsconfigfragments (base.json,base-node.json,next.json).types/: shared ambient types (e.g.browser-process).
Usage inside the monorepo
// packages/example/package.json
{
"scripts": {
"build": "aui-build"
},
"devDependencies": {
"@assistant-ui/x-buildutils": "workspace:*"
}
}
// packages/example/tsconfig.json
{
"extends": "@assistant-ui/x-buildutils/ts/base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src"]
}