gitmoji/turbo.json
dependabot[bot] 3abb868772
⬆️ Bump turbo from 1.13.3 to 2.0.9 (#1771)
* ⬆️ Bump turbo from 1.13.3 to 2.0.9

Bumps [turbo](https://github.com/vercel/turbo) from 1.13.3 to 2.0.9.
- [Release notes](https://github.com/vercel/turbo/releases)
- [Changelog](https://github.com/vercel/turbo/blob/main/release.md)
- [Commits](https://github.com/vercel/turbo/compare/v1.13.3...v2.0.9)

---
updated-dependencies:
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* ♻️ Switch pipeline to tasks

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Carlos Cuesta <carloscuesta@me.com>
2024-07-21 17:55:05 +00:00

31 lines
586 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"tscheck": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"build": {
"outputs": [".next/**", "public/**", "dist/**"],
"dependsOn": ["^build"]
},
"publishPackage": {
"dependsOn": ["^lint"],
"outputs": []
}
}
}