Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Add workflow for copying compiled artifacts to 0x/contract-artifacts #1842

Merged
merged 30 commits into from
Jun 17, 2019
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
654dbd3
add workflow for copying compiled artifacts to 0x/contract-artifacts
xianny May 31, 2019
5c256a5
update changelog
xianny May 31, 2019
f17518d
cleanup logging, error handling, readability
xianny Jun 4, 2019
98cb2f1
modularise workflow and remove more unwanted properties
xianny Jun 6, 2019
67c19fe
cleanup
xianny Jun 6, 2019
a0333dd
cleanup again
xianny Jun 6, 2019
9114936
fix import
xianny Jun 6, 2019
f609a3c
cleanup again
xianny Jun 6, 2019
ccb154b
fix imports again
xianny Jun 6, 2019
145c781
reset contract artifacts
xianny Jun 6, 2019
42f6793
don't remove compiler field
xianny Jun 6, 2019
56eae40
remove linting from contracts packages
xianny Jun 7, 2019
a167b40
update contract artifacts scripts
xianny Jun 7, 2019
314b765
fix comment
xianny Jun 7, 2019
60056f7
prettier
xianny Jun 7, 2019
dabb63f
run prettier on the artifacts to minimise diffs from future runs
xianny Jun 10, 2019
7b3bcb9
add python artifacts
xianny Jun 10, 2019
1e2f48e
rename lint -> transform
xianny Jun 10, 2019
ede035a
changes after review
xianny Jun 11, 2019
e18865f
try referencing contractPackages from root package.json
xianny Jun 11, 2019
d74d60c
revert e18865fbffc3ac05f232d45906ca44dde47f83d4
xianny Jun 11, 2019
fcd7fe2
strip unneeded fields from artifacts
xianny Jun 11, 2019
7443b58
add doc comment
xianny Jun 11, 2019
a581713
Merge branch 'development' into feature/prepublish-contract-artifacts
xianny Jun 11, 2019
86c94ee
update yarn.lock
xianny Jun 11, 2019
38ea4d5
export const instead of function
xianny Jun 11, 2019
4fe5a50
update changelogs and package.json
xianny Jun 11, 2019
4d6a0b8
read contractsPackages from root package.json
xianny Jun 11, 2019
c813fc2
small cleanups
xianny Jun 14, 2019
f906cee
reproduce ci error
xianny Jun 14, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/abi-gen-wrappers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"shx": "^0.2.2"
},
"dependencies": {
"@0x/base-contract": "^5.1.0"
"@0x/base-contract": "^5.1.0",
"@0x/contract-artifacts": "^1.5.1"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 9 additions & 0 deletions packages/contract-artifacts/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
[
{
"version": "2.0.0",
"changes": [
{
"note": "Remove evm.bytecode.linkReferences from all artifacts. Remove evm.deployedBytecode and sourceTreeHashHex from Coordinator artifact.",
"pr": 1842
}
]
},
{
"timestamp": 1557507213,
"version": "1.5.1",
Expand Down
Loading