123456789101112131415161718192021222324252627 |
- {
- "$schema": "https://turbo.build/schema.json",
- "pipeline": {
- "build": {
- "outputs": ["dist/**"],
- "dependsOn": ["^build"],
- "inputs": ["../../icons/**"]
- },
- "lint": {},
- "dev": {
- "cache": false,
- "persistent": true
- },
- "clean": {
- "cache": false
- },
- "test": {
- "dependsOn": ["build", "^build"]
- },
- "typecheck": {
- "dependsOn": ["build", "^build"]
- },
- "imports-check": {
- "dependsOn": ["build", "^build"]
- }
- }
- }
|