Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00
..

@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-build CLI: invoked as "build": "aui-build" from every package's package.json. Compiles TypeScript with our shared strict config, validates that imports resolve to declared exports sub-paths, and rewrites .ts import specifiers to .js so the emitted ESM works at runtime.
  • ts/: shared tsconfig fragments (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"]
}