diff options
author | Jacob Evans <jacob@dekz.net> | 2018-10-18 08:07:00 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-10-18 08:07:00 +0800 |
commit | 02cf99fa367f8058447a0a05b1d148afb68ab85c (patch) | |
tree | 4f1f830ba5736820526944c0585d7c1c618a3b38 /packages/monorepo-scripts/src | |
parent | 5ec4b27200297708298deca97603849a37b2f66a (diff) | |
download | dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar.gz dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar.bz2 dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar.lz dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar.xz dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.tar.zst dexon-sol-tools-02cf99fa367f8058447a0a05b1d148afb68ab85c.zip |
fix(order-utils): remove constants export
Diffstat (limited to 'packages/monorepo-scripts/src')
-rw-r--r-- | packages/monorepo-scripts/src/doc_gen_configs.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/monorepo-scripts/src/doc_gen_configs.ts b/packages/monorepo-scripts/src/doc_gen_configs.ts index b5a36376a..0aaf5a6a5 100644 --- a/packages/monorepo-scripts/src/doc_gen_configs.ts +++ b/packages/monorepo-scripts/src/doc_gen_configs.ts @@ -16,8 +16,14 @@ export const docGenConfigs: DocGenConfigs = { Schema: 'https://github.com/tdegrunt/jsonschema/blob/5c2edd4baba149964aec0f23c87ad12c25a50dfb/lib/index.d.ts#L49', Uint8Array: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array', + // HACK: CI can handle these without the namespace but some local setups (Jacob) require the namespace prefix + // This is duplicated until we can discover the source of the issue. GanacheOpts: 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/ganache-core/index.d.ts#L8', keystore: 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eth-lightwallet/index.d.ts#L36', + 'Ganache.GanacheOpts': + 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/ganache-core/index.d.ts#L8', + 'lightwallet.keystore': + 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eth-lightwallet/index.d.ts#L36', }, // If a 0x package re-exports an external package, we should add a link to it's exported items here EXTERNAL_EXPORT_TO_LINK: { |