Skip to content

Commit

Permalink
Fix commands with yarn 4 (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress authored Mar 1, 2024
1 parent 56bf81e commit ca43c09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/dev-tools/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ build_monorepo() {
}

if [ ! -z "$TS_PROJECT" ]; then
tspc -b $TS_PROJECT --verbose
npx tspc -b $TS_PROJECT --verbose
fi

if [ -d "modules" ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/dev-tools/scripts/metrics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ build_bundle() {
else
DIST="module,browser,main"
fi
(esbuild $1 --outdir="$TMP_DIR" --bundle --minify --main-fields=$DIST --log-level=error)
(npx esbuild $1 --outdir="$TMP_DIR" --bundle --minify --main-fields=$DIST --log-level=error)
}

# Main Script
Expand Down

0 comments on commit ca43c09

Please sign in to comment.