Skip to content

Commit 263b107

Browse files
committed
chore: fix typedoc
1 parent 13ef687 commit 263b107

File tree

3 files changed

+167
-3
lines changed

3 files changed

+167
-3
lines changed

package-lock.json

+163
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"test": "node --max_old_space_size=3048 node_modules/jest/bin/jest.js --forceExit --no-cache",
99
"test:coverage": "node --max_old_space_size=3048 node_modules/jest/bin/jest.js --coverage --forceExit --no-cache",
1010
"bootstrap": "lerna bootstrap --no-ci",
11-
"bootstrap:ci": "lerna bootstrap",
11+
"bootstrap:ci": "lerna bootstrap --ignore @deepkit/benchmark",
1212
"link": "npm-local-development --no-watcher",
1313
"build": "tsc --build tsconfig.json && tsc --build tsconfig.esm.json && lerna run build",
1414
"build:esm": "tsc --build tsconfig.esm.json",
@@ -19,7 +19,7 @@
1919
"clean": "find packages/*/dist/* ! -name 'package.json' -type f -exec rm -f {} +",
2020
"clean:modules": "rm -rf packages/*/node_modules; rm -rf node_modules",
2121
"clean:lock": "rm -rf packages/*/package-lock.json",
22-
"docs": "rm -rf docs && typedoc",
22+
"docs": "rm -rf docs && node --max-old-space-size=12096 node_modules/.bin/typedoc packages/*/index.ts",
2323
"publish": "lerna publish --no-private prerelease",
2424
"publish-force": "npm run build && lerna publish --no-private --force-publish",
2525
"publish-website": "heroku container:push web && heroku container:release web"
@@ -39,6 +39,7 @@
3939
"ts-jest": "^27.1.3",
4040
"ts-node": "^10.0.0",
4141
"ts-node-dev": "^1.1.1",
42+
"typedoc": "^0.23.2",
4243
"typescript": "^4.6.2"
4344
},
4445
"engines": {

typedoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
out: 'docs',
3-
exclude: ['**/node_modules/**', '**/*.spec.ts', '**/dist/**'],
3+
exclude: ['**/node_modules/**', '**/*.spec.ts', '**/dist/**', 'packages/*-gui', 'packages/ui-library', 'packages/benchmark', 'packages/example-app', 'packages/framework-integration'],
44
name: 'Deepkit',
55
excludePrivate: true
66
};

0 commit comments

Comments
 (0)