aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/containers
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-10 21:20:00 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-05-10 23:47:38 +0800
commitf854f3ee2bd74bbb61ed465099168b4d391f92c8 (patch)
treed0d126e9041198dfb8d27a48a251167bf4fd4e44 /packages/website/ts/containers
parent1055ca6d4435c0a9b325586e4c7af3458eff273a (diff)
downloaddexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar.gz
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar.bz2
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar.lz
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar.xz
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.tar.zst
dexon-sol-tools-f854f3ee2bd74bbb61ed465099168b4d391f92c8.zip
Remove unused deployer docs configs
Diffstat (limited to 'packages/website/ts/containers')
-rw-r--r--packages/website/ts/containers/sol_compiler_documentation.ts21
1 files changed, 4 insertions, 17 deletions
diff --git a/packages/website/ts/containers/sol_compiler_documentation.ts b/packages/website/ts/containers/sol_compiler_documentation.ts
index 0cf595645..2f6486146 100644
--- a/packages/website/ts/containers/sol_compiler_documentation.ts
+++ b/packages/website/ts/containers/sol_compiler_documentation.ts
@@ -28,7 +28,7 @@ const docSections = {
const docsInfoConfig: DocsInfoConfig = {
id: DocPackages.SolCompiler,
type: SupportedDocJson.TypeDoc,
- displayName: 'Sol Compiler',
+ displayName: 'Solidity Compiler',
packageUrl: 'https://github.com/0xProject/0x-monorepo',
menu: {
introduction: [docSections.introduction],
@@ -52,22 +52,9 @@ const docsInfoConfig: DocsInfoConfig = {
typeConfigs: {
// Note: This needs to be kept in sync with the types exported in index.ts. Unfortunately there is
// currently no way to extract the re-exported types from index.ts via TypeDoc :(
- publicTypes: [
- 'CompilerOptions',
- 'DeployerOptions',
- 'BaseDeployerOptions',
- 'UrlDeployerOptions',
- 'ProviderDeployerOptions',
- 'TxData',
- ],
- typeNameToExternalLink: {
- Web3: constants.URL_WEB3_DOCS,
- BigNumber: constants.URL_BIGNUMBERJS_GITHUB,
- ContractInstance: 'https://github.com/0xProject/web3-typescript-typings/blob/f5bcb96/index.d.ts#L98',
- },
- typeNameToPrefix: {
- ContractInstance: 'Web3',
- },
+ publicTypes: ['CompilerOptions'],
+ typeNameToExternalLink: {},
+ typeNameToPrefix: {},
},
};
const docsInfo = new DocsInfo(docsInfoConfig);