@lerna/filter-options
Advanced tools
Changelog
3.3.0 (2018-09-06)
<a name="3.2.1"></a>
Changelog
3.1.2 (2018-08-20)
<a name="3.1.1"></a>
Changelog
3.0.5 (2018-08-15)
<a name="3.0.4"></a>
Changelog
3.0.0 (2018-08-10)
npm pack
experience (627cfc2)npm pack
before npm publish
(8d80b2c)lerna version
from of lerna publish
(#1522) (8b97394), closes #277 #936 #956 #961 #1056 #1118 #1385 #1483 #1494changed: The package names emitted to stdout are no longer prefixed by a "- ", and private packages are no longer displayed by default.
list: The default output of lerna ls
no longer shows version strings or private packages.
The new alias lerna la
resembles the old output, with the addition of relative path to the package
The new alias lerna ll
is a shortcut for the new --long
option
A new --parseable
option has been added to aid magical piping incantations
--preid
now defaults to "alpha" during prereleases:The previous default for this option was undefined, which led to an awkward "1.0.1-0" result when passed to semver.inc()
.
The new default "alpha" yields a much more useful "1.0.1-alpha.0" result. Any previous prerelease ID will be preserved, just as it was before.
--no-verify
is no longer passed to git commit
by default, but controlled by the new --commit-hooks
option:
The previous behavior was too overzealous, and the new option operates exactly like the corresponding npm version option of the same name.
As long as your pre-commit hooks are properly scoped to ignore changes in package.json files, this change should not affect you. If that is not the case, you may pass --no-commit-hooks
to restore the previous behavior.
<a name="3.0.0-rc.0"></a>
Changelog
3.0.0-rc.0 (2018-07-27)
--exact
option to lerna add
(#1478) (346d156), closes #1470rawPackageList
getter (0ad5faf)--amend
flag (#1422) (ef5f0db)$PKGDIR/scripts/{pre,post}publish.js
lifecycles are now opt-in instead of automatic. Pass --require-scripts
explicitly to restore previous functionality.this.packages
no longer exists in Command subclasses, use this.packageGraph.rawPackageList
<a name="3.0.0-beta.21"></a>
Changelog
3.0.0-beta.18 (2018-04-24)
git push
(#1376) (0b88ffb), closes #1366--follow-tags
to git push
(6907e90)--include-filtered-dependents
flag (#1393) (2838260)--scope
and --ignore
options where they were not intended,
despite logging the unexpected arguments correctly. This would result in the commands continuing to run with unexpected configuration.Going forward, lerna will exit non-zero immediately upon encountering these errors.
@lerna/git-utils
is gone. Don't use it.<a name="3.0.0-beta.17"></a>
Changelog
3.0.0-beta.9 (2018-03-24)
--skip-*
properly, leave working tree clean (5b4b2c9)--skip-npm
was passed,
despite no actual requirement for that property when no publishing is going on.Now, all publish-related operations are truly skipped with --skip-npm
,
and all git commit/push-related operations are skipped with --skip-git
.
Passing --skip-npm
will now also always push to remote, which represents
a breaking change from 2.x behavior.
Thanks @KingScooty for raising the issue!
bootstrapConfig
and publishConfig
namespaces are no longer honored.
These config blocks should be moved to command.bootstrap
and command.publish
, respectively.<a name="3.0.0-beta.8"></a>
Changelog
3.0.0-beta.2 (2018-03-10)
@lerna/has-dependency-installed
into commands/bootstrap/lib
(c09ccbd)@lerna/fs-utils
=> @lerna/rimraf-dir
(30451ed)@lerna/fs-utils
dependency with fs-extra
(9c35a86)@lerna/match-package-name
with multimatch
(423f82c)filterPackages()
have changed:
include
, exclude
) have replaced the destructured config object<a name="3.0.0-beta.1"></a>
Changelog
3.0.0-beta.1 (2018-03-09)
["packages/*"]
.Changelog
v3.0.0-beta.0 (2018-03-07)
This is the first lerna
release published by lerna
itself. :tada:
#1307 Convert lerna/lerna
into a lerna
-based monorepo. (@evocateur)
Rename lerna publish
flag --ignore
to --ignore-changes
(8c92956)
This resolves previous ambiguity as to what exactly was intended by the "ignore" config for lerna publish,
which was not intended to be identical to the filtering option --ignore
.
The old option will still work when found in lerna.json
config, but it is recommended to migrate to the
new option name to ensure future compatibility.