Skip to content

Commit

Permalink
chore: don't fail on assets rebuilding
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Apr 22, 2024
1 parent a6f7b75 commit 2743e4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/build-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ npm run docs:api

# TODO: revisit --ignore-scripts after solving https://github.com/npm/cli/issues/4202
perl -i -pe 's/"prepare"/"rem-prepare"/g' package.json
rm -rf docs/examples/browser
mkdir -p docs/examples/browser

echo Build example aepp
cd ./examples/browser/aepp
npm i
VUE_APP_WALLET_URL=../wallet-iframe/ PUBLIC_PATH=./ npm run build -- --report
mv -f dist/ ../../../docs/examples/browser/aepp
mv dist/ ../../../docs/examples/browser/aepp

echo Build example wallet-iframe
cd ../wallet-iframe
npm i
VUE_APP_AEPP_URL=../aepp/ PUBLIC_PATH=./ npm run build -- --report
mv -f dist/ ../../../docs/examples/browser/wallet-iframe
mv dist/ ../../../docs/examples/browser/wallet-iframe

echo Build example wallet-web-extension
cd ../wallet-web-extension
Expand Down

0 comments on commit 2743e4a

Please sign in to comment.