v1.0.6
What's Changed
- Add support for
--onlyflag that matches lerna/pnpm run behavior by @jaredpalmer in #174 The--onlyflag is to support restricting task execution to only the tasks specified inrun. This makes it easier to adopt Turbo in a Lerna codebase since--onlybehavior is effectively an exact match.
For this Turbo pipeline:
"turbo": {
"pipeline": {
"build": {
"outputs": [
"dist/**/*"
],
"dependsOn": [
"^build"
]
},
"test": {
"dependsOn": [
"^build"
]
}
}turbo run testturbo run test --only --graphFull Changelog: v1.0.5...v1.0.6