File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 190190 "vue" : " 3.2.45" ,
191191 "vite" : " 2.6.14"
192192 }
193- }
193+ },
194+ "workspaces" : [
195+ " packages/*"
196+ ]
194197}
Original file line number Diff line number Diff line change 1818
1919# Release packages
2020for PKG in packages/* ; do
21- pushd $PKG
22- echo " ⚡ Publishing $PKG with edge tag"
23- pnpm publish --access public --no-git-checks --tag edge
24- popd
21+ if [[ -d $PKG ]]; then
22+ if [[ $PKG == packages/size-* || $PKG == packages/format-explorer ]]; then
23+ continue
24+ fi
25+ pushd $PKG
26+ echo " ⚡ Publishing $PKG with edge tag"
27+ pnpm publish --access public --no-git-checks --tag edge
28+ popd
29+ fi
2530done
Original file line number Diff line number Diff line change 1818
1919# Release packages
2020for PKG in packages/* ; do
21- pushd $PKG
22- TAG=" next"
23- echo " ⚡ Publishing $PKG with tag $TAG "
24- pnpm publish --access public --no-git-checks --tag $TAG
25- popd > /dev/null
21+ if [[ -d $PKG ]]; then
22+ if [[ $PKG == packages/size-* || $PKG == packages/format-explorer ]]; then
23+ continue
24+ fi
25+ pushd $PKG
26+ TAG=" next"
27+ echo " ⚡ Publishing $PKG with tag $TAG "
28+ pnpm publish --access public --no-git-checks --tag $TAG
29+ popd > /dev/null
30+ fi
2631done
You can’t perform that action at this time.
0 commit comments