123456789101112131415161718192021 |
- {
- "$schema": "https://turbo.build/schema.json",
- "pipeline": {
- "build": {
- "outputs": ["dist"]
- },
- "bundlewatch": {
- "dependsOn": ["build"]
- },
- "lint": {
- "dependsOn": ["^lint"]
- },
- "clean": {
- "dependsOn": ["^clean"]
- },
- "dev": {
- "cache": false,
- "persistent": true
- }
- }
- }
|