Add adapter to net2

This commit is contained in:
Jon Staab
2025-03-21 09:54:30 -07:00
parent 6e15f1f6c1
commit 34e22eaa27
6 changed files with 183 additions and 18 deletions
+3 -3
View File
@@ -11,8 +11,8 @@ for downstream in $(./get_packages.py); do
v=$(jq '.dependencies["'$n'"] // empty' $f)
if [[ ! -z $v ]]; then
mkdir -p packages/$downstream/node_modules/@welshman
cp -r packages/$upstream/build packages/$downstream/node_modules/@welshman/build
cp -r packages/$upstream/build node_modules/@welshman/build
mkdir -p packages/$downstream/node_modules/@welshman/$upstream
cp -r packages/$upstream/build packages/$downstream/node_modules/@welshman/$upstream > /dev/null 2>&1
cp -r packages/$upstream/build node_modules/@welshman/$upstream > /dev/null 2>&1
fi
done