@lerna/output
Advanced tools
Changelog
3.11.0 (2019-02-08)
Changelog
3.6.0 (2018-12-07)
--force-local
option (#1807) (25572af), closes #1763npm info
subprocess to libnpm.manifest (65a1d1b)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
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.