diff --git a/turbo.json b/turbo.json index ac4f4c8..7773b23 100644 --- a/turbo.json +++ b/turbo.json @@ -1,52 +1,21 @@ { - "$schema": "https://turbo.build/schema.json", - "globalDependencies": [ - ".eslintignore", - ".stylelintrc.json", - ".stylelintignore" - ], - "pipeline": { - "build": { - "cache": true, - "dependsOn": [ - "^build" - ], - "outputs": [] - }, - "//$build": { - "cache": true, - "dependsOn": [ - "^build" - ], - "outputs": [ - "apps/frontend/build" - ] - }, - "ci": { - "cache": true - }, - "//$ci": { - "cache": true - }, - "lint": { - "cache": true, - "dependsOn": [ - "^build" - ], - "persistent": true - }, - "//$lint": { - "cache": true, - "dependsOn": [ - "^build" - ], - "persistent": true - }, - "start": { - "cache": true - }, - "//$start": { - "cache": true - } - } + "$schema": "https://turbo.build/schema.json", + "globalDependencies": [ + ".eslintignore", + ".stylelintrc.json", + ".stylelintignore" + ], + "pipeline": { + "build": { + "dependsOn": ["^build"], + "outputs": [] + }, + "ci": { + "dependsOn": ["^ci"] + }, + "lint": { + "dependsOn": ["^build"] + }, + "start": {} + } }