mirror of
https://github.com/QWRK-ORG/qwrk-laconic-core.git
synced 2025-12-29 23:04:07 +00:00
* 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
48 lines
993 B
JSON
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
|
|
}
|
|
}
|
|
}
|