forked from UMAprotocol/protocol
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): add tasks to manage artifacts and deployments (UMAprotoco…
- Loading branch information
Showing
32 changed files
with
5,557 additions
and
5,522 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ dist | |
cache | ||
types | ||
contract-types | ||
generated | ||
typechain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ cache | |
.github | ||
types | ||
contract-types | ||
generated | ||
typechain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
"description": "UMA monorepo containing protocol packages", | ||
"private": true, | ||
"scripts": { | ||
"bootstrap": "npx lerna bootstrap", | ||
"lint": "npm run eslint && npm run prettier -- --list-different", | ||
"lint-fix": "npm run eslint -- --fix && npm run prettier -- --write", | ||
"bootstrap": "yarn", | ||
"lint": "yarn eslint && yarn prettier --list-different", | ||
"lint-fix": "yarn eslint --fix && yarn prettier --write", | ||
"eslint": "eslint './**/*.js' './**/*.ts'", | ||
"prettier": "prettier './**/*.js' './**/*.sol' './**/*.md' './**/*.ts'", | ||
"test": "lerna run --stream --concurrency=4 test", | ||
|
@@ -31,7 +31,7 @@ | |
"devDependencies": { | ||
"@antora/cli": "^2.1.2", | ||
"@antora/site-generator-default": "^2.1.2", | ||
"@typechain/ethers-v5": "^6.0.5", | ||
"@typechain/ethers-v5": "^7.0.1", | ||
"@typescript-eslint/eslint-plugin": "^4.14.1", | ||
"@typescript-eslint/parser": "^4.14.1", | ||
"babel-eslint": "10.0.1", | ||
|
@@ -52,12 +52,13 @@ | |
"lint-staged": "^10.1.3", | ||
"lodash.startcase": "^4.4.0", | ||
"prettier": "2.2.1", | ||
"prettier-plugin-solidity": "^1.0.0-beta.10", | ||
"prettier-plugin-solidity": "1.0.0-beta.10", | ||
"pretty-quick": "^2.0.1", | ||
"secp256k1": "^3.7.1", | ||
"solc-0.8": "npm:solc@^0.8.4", | ||
"truffle": "^5.2.3", | ||
"web3": "^1.3.5" | ||
"typescript": "^4.3.5", | ||
"web3": "^1.5.0" | ||
}, | ||
"resolutions": { | ||
"sse4_crc32": "npm:@node-rs/[email protected]" | ||
|
@@ -70,7 +71,9 @@ | |
"lint-staged": { | ||
"*.{js,ts,tsx}": "eslint --cache --fix" | ||
}, | ||
"workspaces": [ | ||
"packages/**" | ||
] | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.