aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-22 06:06:21 +0800
committerFabio Berger <me@fabioberger.com>2018-08-22 06:06:21 +0800
commitfe43f84abdeb2ed6805d3879f531fbc4f46c4fec (patch)
tree8b33e9838b9e93e48ba93de363b24631ee5291c3 /package.json
parent6b838c034a3a489ae0b962af820270eafc52c377 (diff)
downloaddexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.gz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.bz2
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.lz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.xz
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.tar.zst
dexon-0x-contracts-fe43f84abdeb2ed6805d3879f531fbc4f46c4fec.zip
Use bash for loop for generating docs for each package, revert changes to script
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 4 insertions, 2 deletions
diff --git a/package.json b/package.json
index a86bbd42a..eca1fbe60 100644
--- a/package.json
+++ b/package.json
@@ -32,12 +32,14 @@
"rebuild": "run-s clean build",
"rebuild:no_website": "run-s clean build:no_website",
"test": "wsrun test $PKG --fast-exit --serial --exclude-missing",
- "generate_docs": "node ./packages/monorepo-scripts/lib/doc_generate_and_upload.js",
+ "generate_doc": "node ./packages/monorepo-scripts/lib/doc_generate_and_upload.js",
+ "test:generate_docs:circleci": "for i in ${npm_package_config_packagesWithDocPages}; do yarn generate_doc --package $i --shouldUpload false --isStaging true || break; done;",
"lint": "wsrun lint $PKG --fast-exit --parallel --exclude-missing",
"comment:postinstall": "HACK: For some reason `yarn` is not setting up symlinks properly for order-utils. We temporarily set them manually. Remove this after V2 refactor is complete."
},
"config": {
- "mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic"
+ "mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic",
+ "packagesWithDocPages": "0x.js connect json-schemas subproviders web3-wrapper contract-wrappers order-utils order-watcher sol-compiler sol-cov ethereum-types"
},
"devDependencies": {
"@0x-lerna-fork/lerna": "3.0.0-beta.23",