X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fbuild.sh;h=dd6d075eb17c4c3f9138340490f07288436193f1;hb=HEAD;hp=245491e0209a829319e943f45ee8ddba124003f5;hpb=01c826dc4fac3572569de654eb35da8615c3acb4;p=poolifier.git diff --git a/examples/typescript/build.sh b/examples/typescript/build.sh index 245491e0..2fa1e7b7 100755 --- a/examples/typescript/build.sh +++ b/examples/typescript/build.sh @@ -6,10 +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 -