mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
13 lines
168 B
Bash
13 lines
168 B
Bash
|
#/usr/bin/env/sh
|
||
|
set -e
|
||
|
|
||
|
components="server client"
|
||
|
|
||
|
for component in $components
|
||
|
do
|
||
|
echo "Building: $component"
|
||
|
cd $component
|
||
|
npm run build
|
||
|
cd ..
|
||
|
done
|