We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nuxt
1 parent 0b8a18c commit 4e9dcddCopy full SHA for 4e9dcdd
1 file changed
scripts/release-publish
@@ -8,7 +8,17 @@ fi
8
9
yarn build
10
11
-./scripts/workspace-run npm publish --tag 2x -q
+for dir in packages/* distributions/* ; do
12
+ # echo "$dir"
13
+ pushd $dir > /dev/null
14
+ # if package is nuxt then publish with tag 2x
15
+ if [ "$dir" = "distributions/nuxt" ]; then
16
+ echo npm publish --tag 2x -q
17
+ else
18
+ echo npm publish -q
19
+ fi
20
+ popd > /dev/null
21
+done
22
23
git tag -a v$1 -m v$1
24
git push --tags
0 commit comments