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 190
190
"vue" : " 3.2.45" ,
191
191
"vite" : " 2.6.14"
192
192
}
193
- }
193
+ },
194
+ "workspaces" : [
195
+ " packages/*"
196
+ ]
194
197
}
Original file line number Diff line number Diff line change 18
18
19
19
# Release packages
20
20
for 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
25
30
done
Original file line number Diff line number Diff line change 18
18
19
19
# Release packages
20
20
for 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
26
31
done
You can’t perform that action at this time.
0 commit comments