123456789101112131415161718192021222324252627282930313233 |
- {
- "$schema": "https://turborepo.org/schema.json",
- "baseBranch": "origin/master",
- "pipeline": {
- "build": {
- "dependsOn": ["^build"],
- "outputs": [".next/**"]
- },
- "lint": {
- "outputs": []
- },
- "test": {
- "dependsOn": ["^build"],
- "outputs": []
- },
- "test:build": {
- "outputs": []
- },
- "test:unit": {
- "outputs": []
- },
- "test:watch": {
- "outputs": []
- },
- "start": {
- "cache": false,
- "dependsOn": ["^build"]
- },
- "deploy": {
- "dependsOn": ["^build"]
- }
- }
- }
|