mirror of
https://github.com/gre/gl-react.git
synced 2025-12-08 21:35:55 +00:00
13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd `dirname $0`/..
|
|
|
|
for pkg in packages/*/; do
|
|
echo "Publishing $pkg..."
|
|
cd $pkg;
|
|
npm publish --tag=next
|
|
cd -;
|
|
done;
|
|
|
|
npm run deploy-cookbook
|