diff --git a/configure.sh b/configure.sh index 1a46aa7..aa6d2de 100755 --- a/configure.sh +++ b/configure.sh @@ -2,7 +2,7 @@ echo "#!/bin/sh" > .git/hooks/pre-commit echo './doc-resources/update-repo-docs.sh' >> .git/hooks/pre-commit -for dir in internal/run setup; do +for dir in setup; do (cd $dir && npm install) echo "(cd "$dir" && NODE_OPTIONS=--openssl-legacy-provider npm run build && git add dist/)" >> .git/hooks/pre-commit done