Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/delegation-deployments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"typecheck": "tsc --noEmit",
"changelog:update": "../../scripts/update-changelog.sh @metamask/delegation-deployments",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/delegation-deployments",
"validate-latest-contracts": "npx tsx script/validate-contract-deployments.ts"
"validate-latest-contracts": "yarn tsx script/validate-contract-deployments.ts"
Comment thread
jeffsmale90 marked this conversation as resolved.
},
"publishConfig": {
"access": "public",
Expand Down
4 changes: 2 additions & 2 deletions packages/delegation-toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
"changelog:update": "../../scripts/update-changelog.sh @metamask/delegation-toolkit",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/delegation-toolkit",
"clean": "rm -rf dist",
"test": "npx vitest run --coverage",
"test:watch": "npx vitest watch",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"format": "prettier --write \"src/**/*.{ts,tsx}\" --ignore-path .prettierignore",
"lint": "yarn lint:eslint",
"lint:complete": "yarn lint:eslint && yarn lint:constraints && yarn lint:misc --check && yarn lint:dependencies --check && yarn lint:changelog",
Expand Down
6 changes: 3 additions & 3 deletions packages/delegator-e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
},
"scripts": {
"build": "cd contracts && forge build && cd ..",
"setup": "yarn build && docker compose up -d && npx tsx src/await-dependencies.ts",
"test": "npx vitest run",
"setup": "yarn build && docker compose up -d && yarn tsx src/await-dependencies.ts",
"test": "vitest run",
"test:e2e": "yarn setup && yarn test; EXIT_CODE=$?; yarn teardown; exit $EXIT_CODE",
"test:external": "npx vitest --config vitest.external.config.ts --run",
"test:external": "vitest --config vitest.external.config.ts --run",
"teardown": "docker compose down"
},
"peerDependencies": {
Expand Down
Loading