Skip to content

Commit

Permalink
Replace pnpx with pnpm dlx
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher committed Apr 26, 2024
1 parent bea43ef commit a2b7ab2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundlesize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: library-dist

- name: Run Bundlewatch
run: pnpx bundlewatch
run: pnpm dlx bundlewatch
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
CI_BRANCH: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion packages/codecs-strings/src/__benchmarks__/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S pnpx tsx
#!/usr/bin/env -S pnpm dlx tsx

import { webcrypto as crypto } from 'node:crypto';

Expand Down
2 changes: 1 addition & 1 deletion packages/fetch-impl/src/__benchmarks__/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S pnpx tsx
#!/usr/bin/env -S pnpm dlx tsx

import { ok } from 'node:assert';
import process from 'node:process';
Expand Down
2 changes: 1 addition & 1 deletion packages/keys/src/__benchmarks__/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S pnpx tsx --
#!/usr/bin/env -S pnpm dlx tsx --

import { Bench } from 'tinybench';

Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-transport-http/src/__benchmarks__/run.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S pnpx tsx --
#!/usr/bin/env -S pnpm dlx tsx --

import { ok } from 'node:assert';

Expand Down

0 comments on commit a2b7ab2

Please sign in to comment.