Skip to content

Commit

Permalink
tweaks on build
Browse files Browse the repository at this point in the history
  • Loading branch information
vekexasia committed Mar 15, 2024
1 parent a5da88d commit ee92b98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/reinstalldeps.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/usr/bin/env bash
rm -rf node_modules;
yarn
yarn install --immutable;
ls -la node_modules;
cd packages;
ordered_packages=("bigint-uint8array" "bigint-constrained" "bigint-math" "bigint-buffer-polyfill")
for package in "${ordered_packages[@]}"; do
cd $package;
rm -rf node_modules;
yarn
yarn install --immutable
ls -la node_modules;
cd ..;
done

0 comments on commit ee92b98

Please sign in to comment.