9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
DISTTAG=${1:beta}
|
|
for package in `ls packages`; do
|
|
echo $package
|
|
pushd packages/$package
|
|
pnpm publish --tag ${DISTTAG} --access=public --registry https://registry.npmjs.org
|
|
popd
|
|
done
|