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.