Skip to content

Releases: lerna/lerna

v2.0.0-beta.14

28 May 11:00
Compare
Choose a tag to compare
v2.0.0-beta.14 Pre-release
Pre-release

Bug Fix

  • Fix --force-publish (#165)

v2.0.0-beta.13

21 May 01:20
Compare
Choose a tag to compare
v2.0.0-beta.13 Pre-release
Pre-release

Bug Fix

Also an optimization. Ran into this issue on babel because some deps are circular.

Ex: babel-traverse depends on babel-types, and vice versa which caused a max call stack error.

  • Add cache for checking updated dependencies (#129)

v2.0.0-beta.12

21 May 01:19
Compare
Choose a tag to compare
v2.0.0-beta.12 Pre-release
Pre-release

Bug Fix

It was erroring on lerna init without a lerna.json.

  • make sure lernaJson is defined (#155)

v2.0.0-beta.11

19 May 00:29
Compare
Choose a tag to compare
v2.0.0-beta.11 Pre-release
Pre-release

Bug Fix

  • Add lerna as a devDep (#147) (not a dependency)

v2.0.0-beta.10

17 May 04:00
Compare
Choose a tag to compare
v2.0.0-beta.10 Pre-release
Pre-release

Bug Fix

  • Allow additional properties in lerna init (#140)
  • lerna init should add lerna as a devDependency (#131)

v2.0.0-beta.9

12 May 22:26
Compare
Choose a tag to compare
v2.0.0-beta.9 Pre-release
Pre-release

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"
    ]
  }
}

v2.0.0-beta.8

12 May 22:26
Compare
Choose a tag to compare
v2.0.0-beta.8 Pre-release
Pre-release

Bug Fix

  • lerna.json does not exist in empty repository (#122)
  • lerna diff for repositories without commits (#124)

v2.0.0-beta.7

05 May 19:46
Compare
Choose a tag to compare
v2.0.0-beta.7 Pre-release
Pre-release
  • Replace process.env.FORCE_VERSION with --force-version flag
  • Replace process.env.NPM_DIST_TAG with --npm-tag flag

v2.0.0-beta.6

05 May 18:29
Compare
Choose a tag to compare
v2.0.0-beta.6 Pre-release
Pre-release
  • add lerna.json
  • add --skip-git flag
  • only push current branch on publish
  • various validation improvements

v2.0.0-beta.5

05 May 18:25
Compare
Choose a tag to compare
v2.0.0-beta.5 Pre-release
Pre-release
  • Add .npmignore file