From c6c1b076976050292333d614a47040d01e1c4ce3 Mon Sep 17 00:00:00 2001 From: Will Cory Date: Wed, 28 Jun 2023 17:38:13 -0700 Subject: [PATCH] feat: migrate from yarn to pnpm (#6120) * feat: Upgrade from yarn to pnpm * fix: update eslint and eslint parser to fix contracts-bedrock linter fix: update all eslint packages Revert "fix: update all eslint packages" This reverts commit ba4febe92eeba6cbd79ddf417eacbb9d06f16a7a. ok updating all of the eslint was over aggro upgrade eslint core too --------- Co-authored-by: Will Cory --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 2964254d1fc5..1b76e3b943ac 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,12 @@ "src/*" ], "scripts": { - "all": "yarn clean && yarn build && yarn test && yarn lint:fix && yarn lint", + "all": "pnpm clean && pnpm build && pnpm test && pnpm lint:fix && pnpm lint", "build": "tsc -p tsconfig.json", "clean": "rimraf dist/ ./tsconfig.tsbuildinfo", - "lint": "yarn lint:fix && yarn lint:check", + "lint": "pnpm lint:fix && pnpm lint:check", "lint:check": "eslint . --max-warnings=0", - "lint:fix": "yarn lint:check --fix", + "lint:fix": "pnpm lint:check --fix", "pre-commit": "lint-staged", "test": "hardhat test", "test:next": "vitest",