12345678910111213141516171819202122232425262728 |
- {
- "$schema": "https://turbo.build/schema.json",
- "tasks": {
- "build": {
- "dependsOn": [
- "^build"
- ],
- "outputs": [
- "dist/**"
- ]
- },
- "dev": {
- "cache": false,
- "persistent": false
- },
- "clean": {
- "dependsOn": [
- "^clean"
- ],
- "cache": false
- },
- "bundlewatch": {
- "dependsOn": [
- "^build"
- ]
- }
- }
- }
|