Skip to content

Commit 74aa662

Browse files
package hardhat-ethers
1 parent 8dfc47f commit 74aa662

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

packages/hardhat-ethers/.gitignore

+1-11
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
# Logs
2222
logs
2323
*.log
24-
npm-debug.log*
25-
yarn-debug.log*
26-
yarn-error.log*
27-
lerna-debug.log*
2824

2925
# Diagnostic reports (https://nodejs.org/api/report.html)
3026
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -63,21 +59,15 @@ jspm_packages/
6359
# TypeScript v1 declaration files
6460
typings/
6561

66-
# Optional npm cache directory
67-
.npm
68-
6962
# Optional eslint cache
7063
.eslintcache
7164

7265
# Optional REPL history
7366
.node_repl_history
7467

75-
# Output of 'npm pack'
68+
# Output of 'pnpm pack'
7669
*.tgz
7770

78-
# Yarn Integrity file
79-
.yarn-integrity
80-
8171
# parcel-bundler cache (https://parceljs.org/)
8272
.cache
8373

packages/hardhat-ethers/package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"ethers.js"
1717
],
1818
"scripts": {
19-
"lint": "yarn prettier --check && yarn eslint",
20-
"lint:fix": "yarn prettier --write && yarn eslint --fix",
19+
"lint": "pnpm prettier --check && pnpm eslint",
20+
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2121
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
2222
"prettier": "prettier \"**/*.{js,md,json}\"",
23-
"pretest": "cd ../.. && yarn build",
23+
"pretest": "cd ../.. && pnpm build",
2424
"test": "mocha --recursive \"test/**/*.ts\"",
2525
"build": "tsc --build .",
26-
"prepublishOnly": "yarn build",
26+
"prepublishOnly": "pnpm build",
2727
"clean": "rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo"
2828
},
2929
"files": [
@@ -43,8 +43,11 @@
4343
"lodash.isequal": "^4.5.0"
4444
},
4545
"devDependencies": {
46+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
47+
"@nomicfoundation/eslint-plugin-slow-imports": "workspace:^",
4648
"@types/chai": "^4.2.0",
4749
"@types/chai-as-promised": "^7.1.3",
50+
"@types/debug": "^4.1.4",
4851
"@types/lodash.isequal": "^4.5.6",
4952
"@types/mocha": ">=9.1.0",
5053
"@types/node": "^16.0.0",

0 commit comments

Comments
 (0)