add bill of materials to prebuilt

This commit is contained in:
Sebastian 2023-04-24 11:56:20 -03:00
parent fdd5633530
commit d61471544c
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069
2 changed files with 11 additions and 5 deletions

View File

@ -2,5 +2,9 @@
[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && exit 1
cp packages/merchant-backoffice-ui/dist/{index,material*,XRXV*}.* prebuilt/backoffice/
cp packages/merchant-backoffice-ui/dist/*.svg prebuilt/backoffice/
find packages/merchant-backoffice-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/backoffice/bof
while IFS= read -r file; do
cp packages/merchant-backoffice-ui/dist/prod/$file prebuilt/backoffice/$file
done < prebuilt/backoffice/bof

View File

@ -2,7 +2,9 @@
[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && exit 1
for file in index.html index.js index.css logo-white-U55BSKA2.svg; do
cp packages/demobank-ui/dist/$file prebuilt/demobank/
done
find packages/demobank-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/demobank/bof
while IFS= read -r file; do
cp packages/demobank-ui/dist/prod/$file prebuilt/demobank/$file
done < prebuilt/demobank/bof