docs: removed typedoc-plugin-coverage

it works like shit
This commit is contained in:
teidesu 2022-08-28 17:56:56 +03:00
parent 7eb843dd20
commit 7b7fdc7092
16 changed files with 1 additions and 40 deletions

View file

@ -31,7 +31,6 @@
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typedoc": "^0.23.10",
"typedoc-plugin-coverage": "^2.0.0",
"typescript": "^4.7.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",

View file

@ -1,7 +1,5 @@
# `@mtcute/core`
![](./coverage.svg)
Core functions and MTProto implementation.
You can learn more in [the guide](/guide/index.html).

View file

@ -1,7 +1,5 @@
# `@mtcute/crypto-node`
![](./coverage.svg)
Native extension for NodeJS that improves performance of the most used
cryptographic mode in Telegram (IGE), which is not implemented by OpenSSL.

View file

@ -1,7 +1,5 @@
# `@mtcute/dispatcher`
![](./coverage.svg)
Dispatcher and bot framework for mtcute.
You can learn more in [the guide](/guide/index.html).

View file

@ -1,7 +1,5 @@
# `@mtcute/file-id`
![](./coverage.svg)
A package that is used internally by `@mtcute/client` to parse, serialize
and manipulate TDLib and Bot API compatible File IDs, but can also be used
for any other purposes.

View file

@ -1,7 +1,5 @@
# @mtcute/http-proxy
![](./coverage.svg)
HTTP(s) proxy transport for mtcute.
## Usage

View file

@ -1,7 +1,5 @@
# @mtcute/i18n
![](./coverage.svg)
This package implements utility for i18n functionality in `@mtcute/client` based apps.
Documentation is TBA.

View file

@ -1,7 +1,5 @@
# @mtcute/markdown-parser
![](./coverage.svg)
> Markdown entities parser for MTCute
This package implements formatting syntax similar to Markdown (CommonMark) but slightly adjusted and simplified.

View file

@ -1,7 +1,5 @@
# @mtcute/mtproxy
![](./coverage.svg)
MTProto proxy (MTProxy) transport for mtcute.
## Usage

View file

@ -1,7 +1,5 @@
# @mtcute/node
![](./coverage.svg)
All-in-one package for NodeJS. Includes support for native crypto addon
(must be installed separately, `@mtcute/crypto-node`), terminal I/O via
`readline` and comes with pre-installed HTML and Markdown parsers.

View file

@ -1,7 +1,5 @@
# @mtcute/socks-proxy
![](./coverage.svg)
Socks4/5 proxy transport for mtcute.
## Usage

View file

@ -1,7 +1,5 @@
# @mtcute/sqlite
![](./coverage.svg)
SQLite backed storage for mtcute.
## Usage

View file

@ -1,7 +1,5 @@
# @mtcute/tl-runtime
![](./coverage.svg)
This package contains runtime for TL (de-)serialization.
It only contains binary reader and writer implementations,
and is used by `@mtcute/core`.

View file

@ -1,5 +1,3 @@
# @mtcute/tl-utils
![](./coverage.svg)
This package contains utilities for TL schema parsing and manipulation.

View file

@ -25,7 +25,6 @@ importers:
semver: ^7.3.7
ts-node: ^10.8.1
typedoc: ^0.23.10
typedoc-plugin-coverage: ^2.0.0
typescript: ^4.7.4
dependencies:
node-gyp: 9.0.0
@ -50,7 +49,6 @@ importers:
semver: 7.3.7
ts-node: 10.8.1_6f1a4dd4ae850373230f71a3bf15e349
typedoc: 0.23.10_typescript@4.7.4
typedoc-plugin-coverage: 2.0.0_typedoc@0.23.10
typescript: 4.7.4
packages/client:
@ -3404,15 +3402,6 @@ packages:
is-typedarray: 1.0.0
dev: true
/typedoc-plugin-coverage/2.0.0_typedoc@0.23.10:
resolution: {integrity: sha512-IJsYW0SvV2RUWfUBWuCG2cXTv+FiPDlls9+JlUlct3N41c1hV01ZOLKmZpEVelrvNSU3SnxxA8mkct3BQm2v0g==}
engines: {node: '>= 14'}
peerDependencies:
typedoc: ^0.22.12 || 0.23.x
dependencies:
typedoc: 0.23.10_typescript@4.7.4
dev: true
/typedoc/0.23.10_typescript@4.7.4:
resolution: {integrity: sha512-03EUiu/ZuScUBMnY6p0lY+HTH8SwhzvRE3gImoemdPDWXPXlks83UGTx++lyquWeB1MTwm9D9Ca8RIjkK3AFfQ==}
engines: {node: '>= 14.14'}

View file

@ -5,13 +5,12 @@ module.exports = {
validation: {
notExported: true,
invalidLink: true,
notDocumented: false,
notDocumented: true,
},
excludePrivate: true,
excludeExternals: true,
exclude: ['**/*/dist', '**/*/node_modules'],
plugin: [
'typedoc-plugin-coverage',
path.join(__dirname, 'scripts/totally-great-typedoc-plugin.js'),
],
}