From: Jérôme Benoit Date: Mon, 23 Sep 2024 12:07:49 +0000 (+0200) Subject: chore: revert incorrect change X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0634ef644af7ad939b86f26cc8f8c9acc7dc1eae;p=poolifier.git chore: revert incorrect change Signed-off-by: Jérôme Benoit --- diff --git a/examples/typescript/build.sh b/examples/typescript/build.sh index 6dea16fb..2fa1e7b7 100755 --- a/examples/typescript/build.sh +++ b/examples/typescript/build.sh @@ -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