Skip to content

Commit df2bc8a

Browse files
committed
build: skip releasing nuxi
1 parent abd5d85 commit df2bc8a

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Diff for: scripts/release-edge.sh

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ fi
2020

2121
# Release packages
2222
for p in packages/* ; do
23+
if [[ $p == "packages/nuxi" ]] ; then
24+
continue
25+
fi
2326
pushd $p
2427
echo "Publishing $p"
2528
cp ../../LICENSE .

Diff for: scripts/release-rc.sh

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ pnpm build
1010

1111
# Release packages
1212
for PKG in packages/* ; do
13+
if [[ $p == "packages/nuxi" ]] ; then
14+
continue
15+
fi
1316
pushd $PKG
1417
TAG="latest"
1518
if [ "$PKG" == "packages/nuxt" ]; then

Diff for: scripts/release.sh

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ pnpm build
1010

1111
# Release packages
1212
for PKG in packages/* ; do
13+
if [[ $p == "packages/nuxi" ]] ; then
14+
continue
15+
fi
1316
pushd $PKG
1417
TAG="latest"
1518
echo "⚡ Publishing $PKG with tag $TAG"

0 commit comments

Comments
 (0)