Skip to content

Commit 124f0d2

Browse files
package hardhat-chai-matchers
1 parent 74aa662 commit 124f0d2

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

packages/hardhat-chai-matchers/.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-chai-matchers/package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
"testing"
1616
],
1717
"scripts": {
18-
"lint": "yarn prettier --check && yarn eslint",
19-
"lint:fix": "yarn prettier --write && yarn eslint --fix",
18+
"lint": "pnpm prettier --check && pnpm eslint",
19+
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
2020
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
2121
"prettier": "prettier \"**/*.{js,md,json}\"",
22-
"pretest": "cd ../.. && yarn build",
22+
"pretest": "cd ../.. && pnpm build",
2323
"test": "mocha --recursive \"test/**/*.ts\" --exit",
24-
"test:ci": "yarn test && node scripts/check-subpath-exports.js",
24+
"test:ci": "pnpm test && node scripts/check-subpath-exports.js",
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": [
@@ -38,6 +38,9 @@
3838
"README.md"
3939
],
4040
"devDependencies": {
41+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
42+
"@nomicfoundation/eslint-plugin-slow-imports": "workspace:^",
43+
"@nomicfoundation/hardhat-chai-matchers": "workspace:^",
4144
"@nomicfoundation/hardhat-ethers": "^3.0.0",
4245
"@types/bn.js": "^5.1.0",
4346
"@types/chai": "^4.2.0",

0 commit comments

Comments
 (0)