We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86b6023 commit e02c411Copy full SHA for e02c411
1 file changed
release.sh
@@ -14,8 +14,19 @@ fi
14
15
git checkout main
16
17
-# update the version
18
-pnpm version "$1" --recursive
+# Update versions in apps
+for dir in apps/*/; do
19
+ cd "$dir" || exit
20
+ pnpm version "$1" --no-git-tag-version
21
+ cd - > /dev/null || exit
22
+done
23
+
24
+# Update versions in packages
25
+for dir in packages/*/; do
26
27
28
29
30
31
# get the new version
32
VERSION=$(grep -m1 '"version":' apps/web/package.json | cut -d'"' -f4)
0 commit comments