yarn lerna 2.0.0-beta.9
v2.0.0-beta.9

latest releases: 8.1.2, 8.1.1, 8.1.0...
7 years ago

New Feature

Add publishConfig and ignore option for publishing (#118)

There is a new option for the lerna config. Pass an array of files (run with minimatch) to filter out when publishing. This is useful for filtering out changes for tests or README files.

// lerna.json
{
  "publishConfig": {
    "ignore": [
      "ignored-file",
      "*.md"
    ]
  }
}

Don't miss a new lerna release

NewReleases is sending notifications on new releases.