Skip to content

Commit d231433

Browse files
package hardhat-verify
1 parent bd0562c commit d231433

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

packages/hardhat-verify/.gitignore

+1-11
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
# Logs
2121
logs
2222
*.log
23-
npm-debug.log*
24-
yarn-debug.log*
25-
yarn-error.log*
26-
lerna-debug.log*
2723

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

65-
# Optional npm cache directory
66-
.npm
67-
6861
# Optional eslint cache
6962
.eslintcache
7063

7164
# Optional REPL history
7265
.node_repl_history
7366

74-
# Output of 'npm pack'
67+
# Output of 'pnpm pack'
7568
*.tgz
7669

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

packages/hardhat-verify/package.json

+10-7
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
"scripts": {
3030
"build": "tsc --build .",
3131
"clean": "rimraf dist internal *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo",
32-
"coverage": "nyc yarn test -- --reporter min",
32+
"coverage": "nyc pnpm test -- --reporter min",
3333
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
34-
"lint": "yarn prettier --check && yarn eslint",
35-
"lint:fix": "yarn prettier --write && yarn eslint --fix",
36-
"prepublishOnly": "yarn build",
34+
"lint": "pnpm prettier --check && pnpm eslint",
35+
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
36+
"prepublishOnly": "pnpm build",
3737
"prettier": "prettier \"**/*.{js,md,json}\"",
38-
"pretest": "cd ../.. && yarn build",
38+
"pretest": "cd ../.. && pnpm build",
3939
"test": "mocha --recursive \"test/**/*.ts\" --exit"
4040
},
4141
"dependencies": {
@@ -50,9 +50,12 @@
5050
"undici": "^5.14.0"
5151
},
5252
"devDependencies": {
53+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
54+
"@nomicfoundation/eslint-plugin-slow-imports": "workspace:^",
5355
"@nomicfoundation/hardhat-ethers": "^3.0.0",
5456
"@types/chai": "^4.2.0",
5557
"@types/chai-as-promised": "^7.1.3",
58+
"@types/debug": "^4.1.4",
5659
"@types/lodash.clonedeep": "^4.5.7",
5760
"@types/mocha": ">=9.1.0",
5861
"@types/node": "^16.0.0",
@@ -69,7 +72,7 @@
6972
"eslint-plugin-no-only-tests": "3.0.0",
7073
"eslint-plugin-prettier": "3.4.0",
7174
"ethers": "^5.0.0",
72-
"hardhat": "^2.0.4",
75+
"hardhat": "workspace:^",
7376
"mocha": "^10.0.0",
7477
"nyc": "^15.1.0",
7578
"prettier": "2.4.1",
@@ -80,6 +83,6 @@
8083
"typescript": "~5.0.0"
8184
},
8285
"peerDependencies": {
83-
"hardhat": "^2.0.4"
86+
"hardhat": "workspace:^"
8487
}
8588
}

0 commit comments

Comments
 (0)