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