npm turbo 1.0.6
v1.0.6

latest releases: 2.0.6, 2.0.6-canary.0, 2.0.5...
2 years ago

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

Don't miss a new turbo release

NewReleases is sending notifications on new releases.