qwrk-laconic-core/turbo.json
Ian Cameron Lyles 402762425b
chore: LAC-126 Components Migrated (#5)
* chore: Onboarding components migrated

* chore: wrap pages

* chore(components): Migrate core and navigation components

Migrated core and navigation components from Snowballtools repository:
- Core components: Dropdown, FormatMilliSecond, Logo, SearchBar, Stepper, StopWatch, VerticalStepper
- Navigation components: GitHubSessionButton, LaconicIcon, NavigationActions, WalletSessionId

Follows component migration guidelines with:
- Tailwind styling
- Consistent file structure
- TypeScript type definitions
- README documentation

* chore(routing): Basic routing within navigation

* chore: Import project cards and deps

* fix: start services in turborepo

* docs: phases for wallet service
2025-03-24 11:48:30 -07:00

48 lines
993 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*", ".env.development.local"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY", "CLERK_SECRET_KEY"]
},
"start": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"check-types": {
"dependsOn": ["^build"],
"outputs": []
},
"fix-types": {
"dependsOn": ["^build"],
"outputs": []
},
"format": {
"dependsOn": ["^build"],
"outputs": []
},
"format:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": []
},
"lint": {
"dependsOn": ["^check-types"]
},
"lint:fix": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}