X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fbuild.sh;h=245491e0209a829319e943f45ee8ddba124003f5;hb=0847dceb05a1e092b6920666bf3228db3389ae8a;hp=2ebc5df089c77df3e185d58e72e289b323f0c809;hpb=7455be54c58f74c6f0d0dd597aa431a88da0a9d8;p=poolifier.git diff --git a/examples/typescript/build.sh b/examples/typescript/build.sh index 2ebc5df0..245491e0 100755 --- a/examples/typescript/build.sh +++ b/examples/typescript/build.sh @@ -2,13 +2,13 @@ set -e -examples=$(find . -name "package.json" -maxdepth 3 -exec dirname {} \;) +examples=$(find . -maxdepth 3 -name "package.json" -exec dirname {} \;) for example in $examples do echo -e "Building $example" cd $example - pnpm install --ignore-scripts + pnpm install --ignore-scripts --frozen-lockfile pnpm build cd - done