Ghislain B.
Ghislain B.
@fahslaj what about `runScript` should it also be executed with corepack? It might have been missed to also use `execPackageManager`, should it? https://github.com/lerna/lerna/blob/2ba1a0cfb1e88f462f07aaf71f94290b9fc2d94a/libs/core/src/lib/npm-run-script.ts#L7-L14
I also wish that this action could add the summary into the PR, that is exactly what Codecov is doing and it is super convenient to get all the info...
I don't think that is a bug, because internally `^` is used unless you use the `--exact` flag https://github.com/lerna/lerna/blob/11d847308bb8f4078e47a30a14b4d883948c4530/libs/commands/version/src/index.ts#L125-L126 you can read the docs about [`--exact`](https://github.com/lerna/lerna/tree/main/libs/commands/version#--exact) > When run with...
you're not the first one who brought this up, just doing a quick search and a few similar issues are coming up #3383, #3046, #2836 and probably more. #2836 has...
@badatt I took your great suggestion and implemented it in [Lerna-Lite](https://github.com/lerna-lite/lerna-lite) (a smaller fork of Lerna) as a new flag [`lerna version --create-release-discussion `](https://github.com/lerna-lite/lerna-lite/tree/main/packages/version#--create-release-discussion-name), you can see this Discussion [group](https://github.com/lerna-lite/lerna-lite/discussions/categories/releases)...
also related to #2402 and #955 There's currently 2 issues in Lerna's code related to this 1. Lerna only ever does 1 dependency version replacement, as soon as a package...
The fix is to downgrade your npm as pointed out in the comment before yours, or the better solution is to wait for either PR #3434 or #3427 to merged...
@TombolaShepless as every Node and npm, they start backporting new versions (npm 9.x) into their older version (npm 8.x), so you might need to downgrade to an older version of...
try running `npm install --package-lock-only` in the shell without Lerna. If that fails, then like I said, try to delete the lock file (you might also need to delete `node_modules`)...
@sahibjotsaggu yes it's been supported for a while now in [Lerna-Lite](https://github.com/lerna-lite/lerna-lite) with the help of @artechventure, see [publishConfig overrides](https://github.com/lerna-lite/lerna-lite/tree/main/packages/publish#publishconfig-overrides) and the implementation is package manager agnostic, so it works the...