| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "$schema": "https://turbo.build/schema.json",
- "extends": ["//"],
- "tasks": {
- "build": {
- "env": [
- "VERCEL_ENV",
- "GOOGLE_ANALYTICS_ID",
- "AMPLITUDE_API_KEY",
- "CLICKHOUSE_URL",
- "CLICKHOUSE_USERNAME",
- "CLICKHOUSE_PASSWORD",
- "SOLANA_RPC",
- "DISABLE_ACCESSIBILITY_REPORTING"
- ]
- },
- "fix:lint": {
- "dependsOn": [
- "//#install:modules",
- "fix:lint:eslint",
- "fix:lint:stylelint"
- ]
- },
- "fix:lint:eslint": {
- "dependsOn": ["//#install:modules", "^build"],
- "cache": false
- },
- "fix:lint:stylelint": {
- "dependsOn": ["//#install:modules"],
- "cache": false
- },
- "test:lint": {
- "dependsOn": ["test:lint:eslint", "test:lint:stylelint"]
- },
- "test:lint:eslint": {
- "dependsOn": ["//#install:modules", "^build"]
- },
- "test:lint:stylelint": {
- "dependsOn": ["//#install:modules"]
- }
- }
- }
|