mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 10:05:09 +03:00
15 lines
257 B
Bash
Executable File
15 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
cd ../npm
|
|
|
|
for i in $(find . -type d -maxdepth 1) ; do
|
|
packageJson="${i}/package.json"
|
|
if [ -f "${packageJson}" ]; then
|
|
echo "installing ${i}..."
|
|
cd ./${i}
|
|
npm ci
|
|
cd ..
|
|
fi
|
|
done
|
|
cd http-api
|
|
npm run build
|