diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-22 02:04:48 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-03-22 02:04:48 +0800 |
commit | 78e9c4880358621cb5a4393d7e32d81bfba1ae6d (patch) | |
tree | 2de7f4b0b0251eca78a9327910e9b9224f5e2d50 /packages/website/ts | |
parent | 18d3e5458a31e7d2368e506e8cf14f190e19b7ff (diff) | |
download | dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar.gz dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar.bz2 dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar.lz dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar.xz dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.tar.zst dexon-sol-tools-78e9c4880358621cb5a4393d7e32d81bfba1ae6d.zip |
Move docs from README into docs page and add a link to it.
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/containers/subproviders_documentation.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/website/ts/containers/subproviders_documentation.ts b/packages/website/ts/containers/subproviders_documentation.ts index 34a3d7da2..7aa05f9a5 100644 --- a/packages/website/ts/containers/subproviders_documentation.ts +++ b/packages/website/ts/containers/subproviders_documentation.ts @@ -14,6 +14,7 @@ import { Translate } from 'ts/utils/translate'; /* tslint:disable:no-var-requires */ const IntroMarkdown = require('md/docs/subproviders/introduction'); const InstallationMarkdown = require('md/docs/subproviders/installation'); +const LedgerNodeHidMarkdown = require('md/docs/subproviders/ledger_node_hid'); /* tslint:enable:no-var-requires */ const docSections = { @@ -21,6 +22,7 @@ const docSections = { installation: 'installation', subprovider: 'subprovider', ledgerSubprovider: 'ledgerSubprovider', + ledgerNodeHid: 'ledger-node-hid-issue', factoryMethods: 'factory-methods', emptyWalletSubprovider: 'emptyWalletSubprovider', fakeGasEstimateSubprovider: 'fakeGasEstimateSubprovider', @@ -41,6 +43,7 @@ const docsInfoConfig: DocsInfoConfig = { install: [docSections.installation], subprovider: [docSections.subprovider], ['ledger-subprovider']: [docSections.ledgerSubprovider], + ['ledger-node-hid-issue']: [docSections.ledgerNodeHid], ['factory-methods']: [docSections.factoryMethods], ['emptyWallet-subprovider']: [docSections.emptyWalletSubprovider], ['fakeGasEstimate-subprovider']: [docSections.fakeGasEstimateSubprovider], @@ -53,6 +56,7 @@ const docsInfoConfig: DocsInfoConfig = { sectionNameToMarkdown: { [docSections.introduction]: IntroMarkdown, [docSections.installation]: InstallationMarkdown, + [docSections.ledgerNodeHid]: LedgerNodeHidMarkdown, }, sectionNameToModulePath: { [docSections.subprovider]: ['"subproviders/src/subproviders/subprovider"'], |