Workflow Automation
When to use this skill
- Repetitive tasks: running the same commands every time
- Complex builds: multi-step build processes
- Team onboarding: a consistent development environment
Instructions
Step 1: npm scripts
package.json:
{
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc && vite build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "e
[Description truncada. Veja o README completo no GitHub.]