Skip to content

Commit

Permalink
build: switch to yarn instead of pnpm
Browse files Browse the repository at this point in the history
build: bump deps
chore: remove yarn.lock from git ignore
  • Loading branch information
andreivladbrg committed Dec 22, 2023
1 parent cbdd790 commit aa15727
Show file tree
Hide file tree
Showing 4 changed files with 749 additions and 505 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ out
.DS_Store
.pnp.*
lcov.info
yarn.lock

# broadcasts
!broadcast
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"url": "https://sablier.com"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.0",
"@openzeppelin/contracts": "5.0.1",
"@prb/math": "4.0.2"
},
"devDependencies": {
"@forge-std": "github:foundry-rs/forge-std#e8a047e3f40f13fa37af6fe14e6e06283d9a060e",
"@prb/test": "0.6.4",
"@forge-std": "github:foundry-rs/forge-std#1.5.6",
"@prb/test": "^0.6.4",
"prettier": "3.0.0",
"solhint": "3.6.2"
"solhint": "^4.0.0"
},
"keywords": [
"blockchain",
Expand All @@ -29,8 +29,8 @@
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "pnpm lint:sol && pnpm prettier:check",
"lint:sol": "forge fmt --check && pnpm solhint {script,src,test}/**/*.sol",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
"test": "forge test",
Expand Down
Loading

0 comments on commit aa15727

Please sign in to comment.