Skip to content

Commit

Permalink
Switch to yarn 3
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Jun 17, 2024
1 parent 0c65c7d commit 1658ede
Show file tree
Hide file tree
Showing 6 changed files with 10,438 additions and 4,880 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ typings/
# Yarn Integrity file
.yarn-integrity

# Yarn artifacts
.yarn/install-state.gz

# dotenv environment variables file
.env
.env.test
Expand Down
874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.4.cjs
5 changes: 3 additions & 2 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"**/*.egg-info/**",
"**/dist/**",
"**/coverage.json",
"**/*.hbs"
"**/*.hbs",
".yarn/**/*"
],
"dictionaries": ["domain-terms", "libraries", "names", "skale-terms", "solidity"],
"dictionaryDefinitions": [
Expand All @@ -27,4 +28,4 @@
{ "name": "names", "path": "./dictionaries/names.txt"},
{ "name": "solidity", "path": "./dictionaries/solidity.txt"}
]
}
}
22 changes: 9 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,33 @@
"repository": "[email protected]:skalenetwork/upgrade-tools.git",
"author": "Dmytro Stebaiev <[email protected]>",
"license": "AGPL-3.0",
"private": false,
"scripts": {
"prepare": "yarn hooks && yarn install-peers",
"compile": "npx hardhat typechain && tsc",
"prepublishOnly": "yarn compile",
"install-peers": "install-peers -f",
"hooks": "git config core.hooksPath .githooks || true",
"no-hooks": "git config core.hooksPath .git/hooks",
"fullCheck": "yarn compile && yarn eslint && yarn cspell",
"eslint": "npx eslint .",
"cspell": "npx cspell \"**/*\""
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@openzeppelin/hardhat-upgrades": "^1.14.0",
"@openzeppelin/upgrades-core": "^1.27.1",
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^8.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"cspell": "^7.0.0",
"eslint": "^8.15.0",
"install-peers-cli": "^2.2.0",
"ethers": "^5.7.2",
"hardhat": "2.8.3 - 2.16.1",
"install-peers": "^1.0.4",
"ts-node": "^10.5.0",
"typechain": "^8.2.0",
"typescript": "^5.1.6"
Expand All @@ -45,13 +49,5 @@
"axios": "^1.4.0",
"ethereumjs-util": "^7.1.4"
},
"peerDependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@openzeppelin/hardhat-upgrades": "^1.14.0",
"@openzeppelin/upgrades-core": "^1.27.1",
"@types/mocha": "^9.1.0",
"ethers": "^5.7.2",
"hardhat": "2.8.3 - 2.16.1"
}
"packageManager": "[email protected]"
}
Loading

0 comments on commit 1658ede

Please sign in to comment.