Skip to content

Commit 3325649

Browse files
package hardhat-vyper
1 parent 7cf1344 commit 3325649

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

packages/hardhat-vyper/.gitignore

+1-11
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
# Logs
1616
logs
1717
*.log
18-
npm-debug.log*
19-
yarn-debug.log*
20-
yarn-error.log*
21-
lerna-debug.log*
2218

2319
# Diagnostic reports (https://nodejs.org/api/report.html)
2420
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -57,21 +53,15 @@ jspm_packages/
5753
# TypeScript v1 declaration files
5854
typings/
5955

60-
# Optional npm cache directory
61-
.npm
62-
6356
# Optional eslint cache
6457
.eslintcache
6558

6659
# Optional REPL history
6760
.node_repl_history
6861

69-
# Output of 'npm pack'
62+
# Output of 'pnpm pack'
7063
*.tgz
7164

72-
# Yarn Integrity file
73-
.yarn-integrity
74-
7565
# parcel-bundler cache (https://parceljs.org/)
7666
.cache
7767

packages/hardhat-vyper/package.json

+11-6
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"vyper"
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"
2828
},
2929
"files": [
@@ -40,11 +40,16 @@
4040
"semver": "^6.3.0"
4141
},
4242
"devDependencies": {
43+
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
44+
"@nomicfoundation/eslint-plugin-slow-imports": "workspace:^",
4345
"@types/chai": "^4.2.0",
46+
"@types/chai-as-promised": "^7.1.8",
47+
"@types/debug": "^4.1.4",
4448
"@types/fs-extra": "^5.1.0",
4549
"@types/lodash": "^4.14.123",
4650
"@types/mocha": ">=9.1.0",
4751
"@types/node": "^16.0.0",
52+
"@types/semver": "^6.0.2",
4853
"@typescript-eslint/eslint-plugin": "5.61.0",
4954
"@typescript-eslint/parser": "5.61.0",
5055
"chai": "^4.2.0",
@@ -54,14 +59,14 @@
5459
"eslint-plugin-import": "2.27.5",
5560
"eslint-plugin-no-only-tests": "3.0.0",
5661
"eslint-plugin-prettier": "3.4.0",
57-
"hardhat": "^2.8.3",
62+
"hardhat": "workspace:^",
5863
"mocha": "^10.0.0",
5964
"prettier": "2.4.1",
6065
"rimraf": "^3.0.2",
6166
"ts-node": "^10.8.0",
6267
"typescript": "~5.0.0"
6368
},
6469
"peerDependencies": {
65-
"hardhat": "^2.8.3"
70+
"hardhat": "workspace:^"
6671
}
6772
}

0 commit comments

Comments
 (0)