Build the fe-tools monorepo packages. Runs TypeScript compilation across all packages and resolves build errors. Use when the user asks to build, compile, verify TypeScript compilation, or check for type errors.
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Build the fe-tools monorepo packages. Runs TypeScript compilation across all packages and resolves build errors. Use when the user asks to build, compile, verify TypeScript compilation, or check for type errors.
Build Packages
Workflow
Run the standard build command: npm run build.
If build fails, identify the first error, summarize the cause, and propose minimal fixes. Common issues:
Missing export: add the missing export statement in src/index.ts
Type mismatch: align the function signature with its JSDoc or callers
Import not found: check the module path and package name spelling
Re-run the build after applying fixes.
Verify build completes with exit code 0 and no error output before considering the task complete.