Skip to content

Commit

Permalink
use pnpm explicitly in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra committed Nov 15, 2023
1 parent 723c6cb commit 191f237
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions account-compression/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"pretty": "prettier --check '{,{src,test}/**/}*.{j,t}s'",
"pretty:fix": "prettier --write '{,{src,test}/**/}*.{j,t}s'",
"lint": "set -ex; npm run pretty; eslint . --ext .js,.ts",
"lint:fix": "npm run pretty:fix && eslint . --fix --ext .js,.ts",
"lint": "set -ex; pnpm run pretty; eslint . --ext .js,.ts",
"lint:fix": "pnpm run pretty:fix && eslint . --fix --ext .js,.ts",
"docs": "rm -rf docs/ && typedoc --out docs",
"deploy:docs": "yarn docs && gh-pages --dest account-compression/sdk --dist docs --dotfiles",
"deploy:docs": "pnpm docs && gh-pages --dest account-compression/sdk --dist docs --dotfiles",
"start-validator": "solana-test-validator --reset --quiet --bpf-program cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK ../target/deploy/spl_account_compression.so --bpf-program noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV ../target/deploy/spl_noop.so",
"run-tests": "jest tests --detectOpenHandles",
"run-tests:events": "jest tests/events --detectOpenHandles",
Expand Down

0 comments on commit 191f237

Please sign in to comment.