2022-01-29 11:54:43 -05:00
|
|
|
{
|
2022-06-30 16:26:37 -05:00
|
|
|
"$schema": "https://turborepo.org/schema.json",
|
2022-01-29 11:54:43 -05:00
|
|
|
"pipeline": {
|
|
|
|
"build": {
|
2022-03-08 18:20:04 -05:00
|
|
|
"dependsOn": ["^build"],
|
2023-04-26 22:39:15 -05: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 11:54:43 -05:00
|
|
|
},
|
2022-03-23 19:46:16 -05:00
|
|
|
"build:ci": {
|
|
|
|
"dependsOn": ["^build:ci"],
|
2023-04-26 22:39:15 -05: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-23 19:46:16 -05:00
|
|
|
},
|
2022-01-29 11:54:43 -05:00
|
|
|
"dev": {
|
2023-06-20 13:06:36 -05:00
|
|
|
"cache": false,
|
|
|
|
"persistent": true
|
2022-01-29 11:54:43 -05:00
|
|
|
},
|
|
|
|
"test": {
|
2023-04-26 22:39:15 -05:00
|
|
|
"env": ["RUNNER_OS", "NODE_VERSION"],
|
|
|
|
"outputMode": "new-only"
|
2023-07-21 14:24:36 -05:00
|
|
|
},
|
|
|
|
"test:hosted": {
|
|
|
|
"outputMode": "new-only",
|
|
|
|
"cache": false
|
2022-01-29 11:54:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|