0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/turbo.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1,010 B
JSON
Raw Normal View History

2022-01-29 11:54:43 -05:00
{
2024-08-14 22:41:21 -05:00
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"inputs": [
"**/*",
"!test/**/*",
"!e2e/**/*",
"!performance/**/*",
"!.astro/**/*",
"!.cache/**/*",
"!mod.js",
"!mod.js.map"
],
"outputs": [
"dist/**/*",
"!vendor/**",
"mod.js",
"mod.js.map"
],
"outputLogs": "new-only"
},
"build:ci": {
"dependsOn": [
"^build:ci"
],
"inputs": [
"**/*",
"!test/**/*",
"!e2e/**/*",
"!performance/**/*",
"!.astro/**/*",
"!.cache/**/*",
"!mod.js",
"!mod.js.map"
],
"outputs": [
"dist/**/*",
"!vendor/**",
"mod.js",
"mod.js.map"
],
"outputLogs": "new-only"
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": [
"^test"
],
"env": [
"RUNNER_OS",
"NODE_VERSION"
],
"outputLogs": "new-only"
},
"test:hosted": {
"cache": false,
"outputLogs": "new-only"
}
}
2022-01-29 11:54:43 -05:00
}