build(deps-dev): apply updates
[poolifier.git] / examples / typescript / build.sh
index 245491e0209a829319e943f45ee8ddba124003f5..dd6d075eb17c4c3f9138340490f07288436193f1 100755 (executable)
@@ -6,9 +6,10 @@ examples=$(find . -maxdepth 3 -name "package.json" -exec dirname {} \;)
 
 for example in $examples
 do
-  echo -e "Building $example"
   cd $example
+  echo -e "Installing dependencies in $example"
   pnpm install --ignore-scripts --frozen-lockfile
+  echo -e "Building $(basename $example)"
   pnpm build
   cd -
 done