Use exact versions and allow publishing of beta NPM packages (#3310)

This commit is contained in:
Opender Singh 2021-04-22 08:29:29 +12:00 committed by GitHub
parent 70738103d7
commit 62f06ca421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,11 @@
"tagVersionPrefix": "lib@",
"version": "2.2.33",
"includeMergedTags": true,
"command": {
"version": {
"message": "publish npm packages %s"
}
},
"packages": [
"packages/*",
"plugins/*"

View File

@ -12,7 +12,9 @@
"lint": "eslint . --ext .js,.json",
"lint:fix": "npm run lint -- --fix",
"bootstrap": "npm install && lerna bootstrap && lerna run --parallel --stream bootstrap",
"publish": "lerna publish",
"version": "lerna version --exact --no-private --preid beta",
"version:dry": "npm run version -- --no-git-tag-version",
"publish": "lerna publish from-git --pre-dist-tag beta",
"clean": "lerna clean --yes && rimraf node_modules",
"typecheck": "lerna run --parallel --stream typecheck",
"test": "npm run lint && npm run typecheck && lerna run --stream --parallel test",