chore: revert incorrect change
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 23 Sep 2024 12:07:49 +0000 (14:07 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 23 Sep 2024 12:07:49 +0000 (14:07 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
examples/typescript/build.sh

index 6dea16fbfab14dc5417ff5feb7ac16111508fb20..2fa1e7b75444d29457c58bcf06486f0fe908b4d4 100755 (executable)
@@ -7,12 +7,9 @@ examples=$(find . -maxdepth 3 -name "package.json" -exec dirname {} \;)
 for example in $examples
 do
   cd $example
-  # echo -e "Installing dependencies in $example"
-  # pnpm install --ignore-scripts --frozen-lockfile
-  # echo -e "Building $(basename $example)"
-  # pnpm build
-  pnpm update
-  pnpm dedupe
-  pnpm outdated
+  echo -e "Installing dependencies in $example"
+  pnpm install --ignore-scripts --frozen-lockfile
+  echo -e "Building $(basename $example)"
+  pnpm build
   cd -
 done