2022-01-29 16:54:43 +00:00
|
|
|
{
|
2022-06-30 21:26:37 +00:00
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
2022-01-29 16:54:43 +00:00
|
|
|
"pipeline": {
|
|
|
|
"build": {
|
2022-03-08 23:20:04 +00:00
|
|
|
"dependsOn": ["^build"],
|
2023-04-27 03:39:15 +00:00
|
|
|
"inputs": [
|
|
|
|
"**/*",
|
|
|
|
"!test/**/*",
|
|
|
|
"!e2e/**/*",
|
|
|
|
"!performance/**/*",
|
|
|
|
"!.astro/**/*",
|
|
|
|
"!.cache/**/*",
|
|
|
|
"!mod.js",
|
|
|
|
"!mod.js.map"
|
|
|
|
],
|
|
|
|
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
|
|
|
|
"outputMode": "new-only"
|
2022-01-29 16:54:43 +00:00
|
|
|
},
|
2022-03-24 00:46:16 +00:00
|
|
|
"build:ci": {
|
|
|
|
"dependsOn": ["^build:ci"],
|
2023-04-27 03:39:15 +00:00
|
|
|
"inputs": [
|
|
|
|
"**/*",
|
|
|
|
"!test/**/*",
|
|
|
|
"!e2e/**/*",
|
|
|
|
"!performance/**/*",
|
|
|
|
"!.astro/**/*",
|
|
|
|
"!.cache/**/*",
|
|
|
|
"!mod.js",
|
|
|
|
"!mod.js.map"
|
|
|
|
],
|
|
|
|
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"],
|
|
|
|
"outputMode": "new-only"
|
2022-03-24 00:46:16 +00:00
|
|
|
},
|
2022-01-29 16:54:43 +00:00
|
|
|
"dev": {
|
2023-06-20 18:06:36 +00:00
|
|
|
"cache": false,
|
|
|
|
"persistent": true
|
2022-01-29 16:54:43 +00:00
|
|
|
},
|
|
|
|
"test": {
|
2023-04-27 03:39:15 +00:00
|
|
|
"env": ["RUNNER_OS", "NODE_VERSION"],
|
|
|
|
"outputMode": "new-only"
|
2022-01-29 16:54:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|