diff options
author | Fabio Berger <me@fabioberger.com> | 2018-09-28 01:39:27 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-09-28 01:39:27 +0800 |
commit | 5cc11912a70f33112983736197d20de941f18137 (patch) | |
tree | 96eb88862d84e733912c913590773aa9214a6cc6 | |
parent | c55a41917851e66e3803883cf10b1e336e2dfc21 (diff) | |
download | dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar.gz dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar.bz2 dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar.lz dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar.xz dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.tar.zst dexon-sol-tools-5cc11912a70f33112983736197d20de941f18137.zip |
Pull in only contracts we want rendered on the doc page
-rw-r--r-- | packages/sol-doc/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-doc/package.json b/packages/sol-doc/package.json index 618cb7ef7..873540215 100644 --- a/packages/sol-doc/package.json +++ b/packages/sol-doc/package.json @@ -13,7 +13,7 @@ "lint": "tslint --project . --format stylish", "clean": "shx rm -rf lib", "generate-v1-protocol-docs": "(cd ../contracts/src/1.0.0; node ../../../../node_modules/.bin/sol-doc --contracts-dir . --contracts Exchange/Exchange_v1.sol TokenRegistry/TokenRegistry.sol TokenTransferProxy/TokenTransferProxy_v1.sol) > v1.0.0.json", - "generate-v2-protocol-docs": "(cd ../contracts/src/2.0.0; node ../../../../node_modules/.bin/sol-doc --contracts-dir . --contracts $(cd protocol; ls -C1 */*.sol */interfaces/*.sol) ) > v2.0.0.json", + "generate-v2-protocol-docs": "(cd ../contracts/src/2.0.0; node ../../../../node_modules/.bin/sol-doc --contracts-dir . --contracts Exchange/Exchange.sol AssetProxy/ERC20Proxy.sol AssetProxy/ERC721Proxy.sol OrderValidator/OrderValidator.sol Forwarder/Forwarder.sol AssetProxyOwner/AssetProxyOwner.sol) > v2.0.0.json", "deploy-v2-protocol-docs": "aws --profile 0xproject s3 cp --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type application/json v2.0.0.json s3://staging-doc-jsons/contracts/", "deploy-v1-protocol-docs": "aws --profile 0xproject s3 cp --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type application/json v1.0.0.json s3://staging-doc-jsons/contracts/" }, |