This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor out sol-cov, sol-profiler and sol-trace into their separate …
…packages
- Loading branch information
1 parent
0ac36ce
commit 2c974b5
Showing
129 changed files
with
1,130 additions
and
624 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
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
Validating CODEOWNERS rules …
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
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
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 was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"version": "1.0.0", | ||
"changes": [ | ||
{ | ||
"note": | ||
"Initial release as a separate package. For historic entries check @0x/sol-trace-based-tools-common", | ||
"pr": 1492 | ||
} | ||
] | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "@0x/sol-coverage", | ||
"version": "1.0.0", | ||
"engines": { | ||
"node": ">=6.12" | ||
}, | ||
"description": "Generate coverage reports for Solidity code", | ||
"main": "lib/src/index.js", | ||
"types": "lib/src/index.d.ts", | ||
"scripts": { | ||
"build": "tsc -b", | ||
"build:ci": "yarn build", | ||
"lint": "tslint --format stylish --project .", | ||
"clean": "shx rm -rf lib src/artifacts generated_docs", | ||
"docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --tsconfig typedoc-tsconfig.json --json $JSON_FILE_PATH $PROJECT_FILES" | ||
}, | ||
"config": { | ||
"postpublish": { | ||
"assets": [] | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/0xProject/0x-monorepo.git" | ||
}, | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/0xProject/0x-monorepo/issues" | ||
}, | ||
"homepage": "https://github.com/0xProject/0x-monorepo/packages/sol-coverage/README.md", | ||
"dependencies": { | ||
"@0x/subproviders": "^2.1.8", | ||
"@0x/sol-trace-based-tools-common": "^2.1.16", | ||
"@0x/typescript-typings": "^3.0.6", | ||
"ethereum-types": "^1.1.4", | ||
"lodash": "^4.17.5" | ||
}, | ||
"devDependencies": { | ||
"@0x/tslint-config": "^2.0.0", | ||
"@types/node": "*", | ||
"npm-run-all": "^4.1.2", | ||
"nyc": "^11.0.1", | ||
"shx": "^0.2.2", | ||
"sinon": "^4.0.0", | ||
"tslint": "5.11.0", | ||
"typedoc": "0.13.0", | ||
"typescript": "3.0.1" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
16 changes: 8 additions & 8 deletions
16
packages/sol-cov/src/coverage_subprovider.ts → .../sol-coverage/src/coverage_subprovider.ts
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export { CoverageSubprovider } from './coverage_subprovider'; | ||
export { | ||
SolCompilerArtifactAdapter, | ||
TruffleArtifactAdapter, | ||
AbstractArtifactAdapter, | ||
ContractData, | ||
} from '@0x/sol-trace-based-tools-common'; | ||
|
||
export { | ||
JSONRPCRequestPayload, | ||
Provider, | ||
JSONRPCErrorCallback, | ||
JSONRPCResponsePayload, | ||
JSONRPCResponseError, | ||
} from 'ethereum-types'; | ||
|
||
export { | ||
JSONRPCRequestPayloadWithMethod, | ||
NextCallback, | ||
ErrorCallback, | ||
OnNextCompleted, | ||
Callback, | ||
} from '@0x/subproviders'; |
Oops, something went wrong.