perf(benchmark): only benchmark poolifier run with mitata
[poolifier.git] / examples / typescript / build.sh
... / ...
CommitLineData
1#!/usr/bin/env bash
2
3set -e
4
5examples=$(find . -maxdepth 3 -name "package.json" -exec dirname {} \;)
6
7for example in $examples
8do
9 cd $example
10 echo -e "Installing dependencies in $example"
11 pnpm install --ignore-scripts --frozen-lockfile
12 echo -e "Building $(basename $example)"
13 pnpm build
14 cd -
15done
16