| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "$schema": "https://turbo.build/schema.json",
- "extends": ["//"],
- "tasks": {
- "build": {
- "env": [
- "VERCEL_ENV",
- "GOOGLE_ANALYTICS_ID",
- "AMPLITUDE_API_KEY",
- "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
- },
- "start:prod": {
- "dependsOn": ["//#install:modules", "build"]
- },
- "test:lint": {
- "dependsOn": ["test:lint:eslint", "test:lint:stylelint"]
- },
- "test:lint:eslint": {
- "dependsOn": ["//#install:modules", "^build"]
- },
- "test:lint:stylelint": {
- "dependsOn": ["//#install:modules"]
- },
- "test:types": {
- "dependsOn": ["//#install:modules", "^build", "build"]
- }
- }
- }
|