| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "$schema": "https://turbo.build/schema.json",
- "tasks": {
- "lint": {},
- "check-types": {},
- "test": {
- "dependsOn": ["@roo-code/types#build"]
- },
- "format": {},
- "clean": {
- "cache": false
- },
- "build": {
- "outputs": ["dist/**"],
- "inputs": ["src/**", "package.json", "tsconfig.json", "tsup.config.ts", "vite.config.ts"]
- },
- "watch:tsc": {
- "cache": false
- },
- "storybook": {
- "cache": false,
- "persistent": true
- },
- "storybook:build": {
- "outputs": ["storybook-static/**"]
- },
- "chromatic": {
- "dependsOn": ["storybook:build"],
- "cache": false
- },
- "playwright": {
- "cache": false
- }
- }
- }
|