kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 25 lines 403 B view raw
1{ 2 "$schema": "https://turbo.build/schema.json", 3 "ui": "tui", 4 "tasks": { 5 "build": { 6 "dependsOn": ["^build"], 7 "inputs": ["$TURBO_DEFAULT$", ".env*"], 8 "outputs": ["dist/**"] 9 }, 10 11 "dev": { 12 "cache": false, 13 "persistent": true 14 }, 15 "lint": { 16 "cache": false, 17 "persistent": true 18 }, 19 "test": { 20 "dependsOn": ["^test"], 21 "cache": false, 22 "outputs": ["coverage/**"] 23 } 24 } 25}