Skip to content

v1.0.6

Compare
Choose a tag to compare
@jaredpalmer jaredpalmer released this 10 Dec 18:48
· 6298 commits to main since this release

What's Changed

  • Add support for --only flag that matches lerna/pnpm run behavior by @jaredpalmer in #174 The --only flag is to support restricting task execution to only the tasks specified in run. This makes it easier to adopt Turbo in a Lerna codebase since --only behavior is effectively an exact match.

For this Turbo pipeline:

"turbo": {
    "pipeline": {
      "build": {
        "outputs": [
          "dist/**/*"
        ],
        "dependsOn": [
          "^build"
        ]
      },
      "test": {
        "dependsOn": [
          "^build"
        ]
      }
    }
turbo run test

graph-1639160891531963000

turbo run test --only --graph

graph-1639160830365669000

Full Changelog: v1.0.5...v1.0.6