1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

fix generated documentation

This commit is contained in:
leibale
2021-12-13 14:21:02 -05:00
parent aa63580b4b
commit 7565ae349d
15 changed files with 1088 additions and 924 deletions

View File

@@ -1 +0,0 @@
documentation/

View File

@@ -17,24 +17,22 @@
"yallist": "4.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@node-redis/test-utils": "*",
"@types/node": "^16.11.10",
"@types/node": "^16.11.12",
"@types/redis-parser": "^3.0.0",
"@types/sinon": "^10.0.6",
"@types/yallist": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"nyc": "^15.1.0",
"release-it": "^14.11.8",
"sinon": "^12.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typedoc-github-wiki-theme": "^0.6.0",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.2"
"typescript": "^4.5.3"
},
"engines": {
"node": ">=12"

View File

@@ -21,7 +21,6 @@
"./lib/ts-declarations",
"./lib/test-utils.ts"
],
"theme": "./node_modules/typedoc-github-wiki-theme/dist",
"out": "documentation"
"out": "../../documentation/client"
}
}

View File

@@ -6,19 +6,21 @@
"types": "./dist/index.d.ts",
"scripts": {
"test": "nyc -r text-summary -r lcov mocha -r source-map-support/register -r ts-node/register './lib/**/*.spec.ts'",
"build": "tsc"
"build": "tsc",
"documentation": "typedoc"
},
"peerDependencies": {
"@node-redis/client": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@node-redis/test-utils": "*",
"@types/node": "^16.11.10",
"@types/node": "^16.11.12",
"nyc": "^15.1.0",
"release-it": "^14.11.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
}
}

View File

@@ -5,5 +5,16 @@
},
"include": [
"./lib/**/*.ts"
]
],
"typedocOptions": {
"entryPoints": [
"./lib"
],
"entryPointStrategy": "expand",
"exclude": [
"./lib/test-utils.ts",
"./lib/**/*.spec.ts"
],
"out": "../../documentation/json"
}
}

View File

@@ -6,19 +6,21 @@
"types": "./dist/index.d.ts",
"scripts": {
"test": "nyc -r text-summary -r lcov mocha -r source-map-support/register -r ts-node/register './lib/**/*.spec.ts'",
"build": "tsc"
"build": "tsc",
"documentation": "typedoc"
},
"peerDependencies": {
"@node-redis/client": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@node-redis/test-utils": "*",
"@types/node": "^16.11.10",
"@types/node": "^16.11.12",
"nyc": "^15.1.0",
"release-it": "^14.11.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
}
}

View File

@@ -5,5 +5,16 @@
},
"include": [
"./lib/**/*.ts"
]
],
"typedocOptions": {
"entryPoints": [
"./lib"
],
"entryPointStrategy": "expand",
"exclude": [
"./lib/test-utils.ts",
"./lib/**/*.spec.ts"
],
"out": "../../documentation/search"
}
}

View File

@@ -10,16 +10,16 @@
"@node-redis/client": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@types/node": "^16.11.12",
"@types/yargs": "^17.0.7",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"release-it": "^14.11.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"yargs": "^17.2.1"
"typescript": "^4.5.3",
"yargs": "^17.3.0"
}
}

View File

@@ -6,19 +6,21 @@
"types": "./dist/index.d.ts",
"scripts": {
"test": "nyc -r text-summary -r lcov mocha -r source-map-support/register -r ts-node/register './lib/**/*.spec.ts'",
"build": "tsc"
"build": "tsc",
"documentation": "typedoc"
},
"peerDependencies": {
"@node-redis/client": "^1.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@node-redis/test-utils": "*",
"@types/node": "^16.11.7",
"@types/node": "^16.11.12",
"nyc": "^15.1.0",
"release-it": "^14.11.7",
"source-map-support": "^0.5.20",
"release-it": "^14.11.8",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
}
}

View File

@@ -5,5 +5,16 @@
},
"include": [
"./lib/**/*.ts"
]
],
"typedocOptions": {
"entryPoints": [
"./lib"
],
"entryPointStrategy": "expand",
"exclude": [
"./lib/test-utils.ts",
"./lib/**/*.spec.ts"
],
"out": "../../documentation/time-series"
}
}