mirror of
https://github.com/rive-app/rive-react.git
synced 2025-12-19 01:30:08 +08:00
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Bump the version number of every npm module in the npm folder.
|
|
for dir in ./npm/*; do
|
|
pushd $dir > /dev/null
|
|
echo Publishing `echo $dir | sed 's:.*/::'`
|
|
npm publish $@
|
|
popd > /dev/null
|
|
done
|