Skip to content

Commit 4dc03dc

Browse files
committed
Remove usages of npx
1 parent 8fb0100 commit 4dc03dc

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/delegation-deployments/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"typecheck": "tsc --noEmit",
4646
"changelog:update": "../../scripts/update-changelog.sh @metamask/delegation-deployments",
4747
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/delegation-deployments",
48-
"validate-latest-contracts": "npx tsx script/validate-contract-deployments.ts"
48+
"validate-latest-contracts": "yarn tsx script/validate-contract-deployments.ts"
4949
},
5050
"publishConfig": {
5151
"access": "public",

packages/delegation-toolkit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@
8686
"changelog:update": "../../scripts/update-changelog.sh @metamask/delegation-toolkit",
8787
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/delegation-toolkit",
8888
"clean": "rm -rf dist",
89-
"test": "npx vitest run --coverage",
90-
"test:watch": "npx vitest watch",
89+
"test": "vitest run --coverage",
90+
"test:watch": "vitest watch",
9191
"format": "prettier --write \"src/**/*.{ts,tsx}\" --ignore-path .prettierignore",
9292
"lint": "yarn lint:eslint",
9393
"lint:complete": "yarn lint:eslint && yarn lint:constraints && yarn lint:misc --check && yarn lint:dependencies --check && yarn lint:changelog",

packages/delegator-e2e/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
},
1414
"scripts": {
1515
"build": "cd contracts && forge build && cd ..",
16-
"setup": "yarn build && docker compose up -d && npx tsx src/await-dependencies.ts",
17-
"test": "npx vitest run",
16+
"setup": "yarn build && docker compose up -d && yarn tsx src/await-dependencies.ts",
17+
"test": "vitest run",
1818
"test:e2e": "yarn setup && yarn test; EXIT_CODE=$?; yarn teardown; exit $EXIT_CODE",
19-
"test:external": "npx vitest --config vitest.external.config.ts --run",
19+
"test:external": "vitest --config vitest.external.config.ts --run",
2020
"teardown": "docker compose down"
2121
},
2222
"peerDependencies": {

0 commit comments

Comments
 (0)