Set new version in all package.json files

This commit is contained in:
René Pfeuffer
2020-09-02 10:41:02 +02:00
parent b60b737712
commit 43b1c7e2d9

View File

@@ -37,16 +37,8 @@ const yarn = args => {
}
};
const version = version => {
yarn([
"run",
"lerna",
"--no-git-tag-version",
"--no-push",
"version",
"--yes",
version
]);
const version = v => {
yarn(["run", "lerna", "--no-git-tag-version", "--no-push", "version", "--force-publish", "--yes", v]);
};
const publish = () => {