Add more inputs for turbo

This commit is contained in:
Benjamin S. Leveritt
2025-06-05 11:32:52 +01:00
parent 39cd197494
commit d9d5662b7a

View File

@@ -7,14 +7,14 @@
"build": {
"env": [
"RESEND_API_KEY",
"RESEND_AUDIENCE_ID",
"RESEND_AUDIENCE_ID",
"GRAFANA_SERVICE_ACCOUNT",
"NODE_ENV",
"APP_NAME"
],
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"dist/**",
".svelte-kit/output/**",
".next/**",
"build/**",
@@ -22,13 +22,28 @@
],
"inputs": [
"src/**",
"lib/**",
"pages/**",
"app/**",
"public/**",
"index.ts",
"index.js",
"*.ts",
"*.tsx",
"*.js",
"*.jsx",
"README.md",
"CHANGELOG.md",
"components.json",
"package.json",
"tsconfig.json",
"tsconfig*.json",
"*.config.*",
"!node_modules/**"
"postcss.config.*",
"tailwind.config.*",
".env*",
"!node_modules/**",
"!dist/**",
"!.turbo/**"
]
},
"dev": {
@@ -49,19 +64,13 @@
]
},
"type-check": {
"inputs": [
"src/**",
"*.ts",
"*.tsx",
"tsconfig.json",
"package.json"
]
"inputs": ["src/**", "*.ts", "*.tsx", "tsconfig.json", "package.json"]
},
"lint": {
"inputs": [
"src/**",
"*.js",
"*.ts",
"*.ts",
"*.tsx",
"*.json",
"biome.json",
@@ -70,17 +79,11 @@
]
},
"//#format-and-lint": {
"inputs": [
"**/*.{js,ts,tsx,json,md}",
"biome.json"
]
"inputs": ["**/*.{js,ts,tsx,json,md}", "biome.json"]
},
"//#format-and-lint:fix": {
"cache": false,
"inputs": [
"**/*.{js,ts,tsx,json,md}",
"biome.json"
]
"inputs": ["**/*.{js,ts,tsx,json,md}", "biome.json"]
}
}
}