mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
🧑💻(makefile) bump-packages-version
Create the command bump-packages-version in Makefile. This command will bump the version of all the javascript packages in the project.
This commit is contained in:
parent
c830b4dae6
commit
7d97a037f6
1 changed files with 10 additions and 0 deletions
10
Makefile
10
Makefile
|
|
@ -313,3 +313,13 @@ start-tilt: ## start the kubernetes cluster using kind
|
|||
tilt up -f ./bin/Tiltfile
|
||||
.PHONY: build-k8s-cluster
|
||||
|
||||
VERSION_TYPE ?= minor
|
||||
bump-packages-version: ## bump the version of the project - VERSION_TYPE can be "major", "minor", "patch"
|
||||
cd ./src/mail && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/apps/e2e/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/apps/impress/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/apps/y-webrtc-signaling/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/packages/eslint-config-impress/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
cd ./src/frontend/packages/i18n/ && yarn version --no-git-tag-version --$(VERSION_TYPE)
|
||||
.PHONY: bump-packages-version
|
||||
|
|
|
|||
Loading…
Reference in a new issue