mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
* ⬆️ 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>
31 lines
586 B
JSON
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": []
|
|
}
|
|
}
|
|
}
|