-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* typedoc config * libs and scripts update * libs update * menus system updates * doc libs update * doc place holders so these not filtered * fix ts error for doc * config * sample docs * removed static doc * link fix check * updated conf * git ignore update * typedoc tags for grouping and cleaning * custom typedoc generator * updated scripts * comments * corrected module * reverted * unnecessary change * removed readme as landing page * fixed docusarus and markdown processing comp issue * yarn lock of docs
- Loading branch information
Showing
18 changed files
with
1,826 additions
and
2,572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ yarn-error.log* | |
|
||
# Don't include auto generated docs of current version | ||
docs/api | ||
|
||
docs/libdocs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
module.exports = { | ||
entryPointStrategy: "expand", | ||
out: "./docs/docs/libdocs/", | ||
|
||
// "exclude": [ | ||
// "**/*.test.ts" | ||
// ], | ||
plugin: [ | ||
"typedoc-plugin-markdown", | ||
"typedoc-plugin-merge-modules" | ||
], | ||
|
||
mergeModulesRenameDefaults: true, // NEW option of TypeDoc added by typedoc-plugin-merge-modules plugin | ||
|
||
hideInPageTOC: true, | ||
hideBreadcrumbs: true, | ||
hidePageTitle: true, | ||
|
||
//publicPath: "https://docs.web3js.org/libdocs/", | ||
//filenameSeparator : "-", | ||
//indexTitle: "", | ||
//preserveAnchorCasing: true, | ||
|
||
excludeExternals: true, | ||
excludeReferences: true, | ||
tsconfig: "./docs/tsconfig.docs.json", | ||
excludeNotDocumented: true, | ||
|
||
excludeNotDocumentedKinds: [ | ||
"Namespace", | ||
"Enum", | ||
"EnumMember", | ||
"Variable", | ||
"Function", | ||
"Class", | ||
"Interface", | ||
"Constructor", | ||
"Property", | ||
"Method", | ||
"CallSignature", | ||
"IndexSignature", | ||
"ConstructorSignature", | ||
"Accessor", | ||
"GetSignature", | ||
"SetSignature", | ||
"TypeAlias", | ||
"Reference" | ||
], | ||
excludeInternal: true, | ||
excludePrivate: true, | ||
excludeProtected: true, | ||
|
||
visibilityFilters: { | ||
"protected": false, | ||
"private": false, | ||
"inherited": false, | ||
"external": false | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
const baseDocConfig = require('./base.config.js'); | ||
|
||
module.exports = { | ||
... baseDocConfig, | ||
|
||
entryPoints: [ | ||
"./packages/web3-eth/src/web3_eth.ts", | ||
"./packages/web3-eth-accounts/src/wallet.ts", | ||
"./packages/web3-eth-accounts/src/account.ts", | ||
"./packages/web3-eth-contract/src/contract.ts", | ||
"./packages/web3-eth-ens/src/ens.ts", | ||
"./packages/web3-eth-iban/src/iban.ts", | ||
"./packages/web3-eth-personal/src/personal.ts", | ||
"./packages/web3-net/src/net.ts", | ||
], | ||
|
||
excludeCategories: "ContractEvent", // for exluding being in module.md file and invalid link in contract.md | ||
mergeModulesMergeMode: "project", // NEW option of TypeDoc added by typedoc-plugin-merge-modules plugin | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
const baseConfig = require('./base.config.js'); | ||
|
||
module.exports = { | ||
... baseConfig, | ||
|
||
entryPoints: [ | ||
"./packages/web3-eth-accounts/src/account.ts", | ||
//utils | ||
"./packages/web3-utils/src/converters.ts", | ||
"./packages/web3-utils/src/hash.ts" | ||
], | ||
|
||
mergeModulesMergeMode: "module", // NEW option of TypeDoc added by typedoc-plugin-merge-modules plugin | ||
cleanOutputDir: false, | ||
|
||
}; |
Oops, something went wrong.