Fix ts errors

This commit is contained in:
Jon Staab
2025-03-31 12:49:28 -07:00
parent cfd2e3aac7
commit 1524d128e3
27 changed files with 357 additions and 448 deletions
+4 -3
View File
@@ -11,8 +11,9 @@ for downstream in $(./get_packages.py); do
v=$(jq '.dependencies["'$n'"] // empty' $f)
if [[ ! -z $v ]]; then
mkdir -p packages/$downstream/node_modules/@welshman/$upstream
cp -r packages/$upstream/* packages/$downstream/node_modules/@welshman/$upstream > /dev/null 2>&1
cp -r packages/$upstream/* node_modules/@welshman/$upstream > /dev/null 2>&1
rm -rf packages/$downstream/node_modules/@welshman/$upstream
cp -r packages/$upstream packages/$downstream/node_modules/@welshman/$upstream
rm -rf node_modules/@welshman/$upstream
cp -r packages/$upstream node_modules/@welshman/$upstream
fi
done