2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00

chore(release): publish v2.8.0 (#122)

* chore(lerna): don't publish packages to npm by lerna

* chore(lerna): add publish to npm command

* fix(github): publish using lerna

* chore(lerna): add publish minor

* chore(release): publish v2.8.0
This commit is contained in:
Nikolay Kostyurin
2021-11-29 00:55:29 +02:00
committed by GitHub
parent da6709d437
commit d070a66db3
39 changed files with 481 additions and 52 deletions
+5 -3
View File
@@ -2,9 +2,11 @@
"scripts": {
"prepublishOnly": "npm run test",
"bootstrap": "lerna bootstrap",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/",
"publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/",
"publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --registry=https://registry.npmjs.org/",
"publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --skip-npm",
"publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --skip-npm",
"publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --skip-npm",
"publish-minor": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version minor --skip-npm",
"size": "lerna run --parallel size",
"bundlesize": "lerna run --parallel bundlesize",
"test": "npm run build && lerna run --parallel link && lerna run --parallel test",