docs(ext): no more need to build libs before ext

This commit is contained in:
Simon
2026-04-15 04:02:16 +08:00
parent 2ad2d06d01
commit e9eaf44bdd
4 changed files with 6 additions and 8 deletions

View File

@@ -21,9 +21,9 @@ Internal packages:
npm start # Start website dev server
npm run build # Build all packages
npm run build:libs # Build all libraries
npm run typecheck # Typecheck all packages (libs + website + extension)
npm run build:ext # Build and zip the extension package
npm run typecheck # Typecheck all packages
npm run lint # ESLint
npm run zip -w @page-agent/ext # Zip the extension package
```
## Architecture
@@ -38,7 +38,7 @@ packages/
├── page-agent/ # npm: "page-agent" entry class (with UI + controller + demo builds)
├── website/ # @page-agent/website (private)
├── llms/ # @page-agent/llms
├── extension/ # Browser extension (WXT + React)
├── extension/ # Browser extension
├── page-controller/ # @page-agent/page-controller
└── ui/ # @page-agent/ui
```