Skip to content

Commit e2235f0

Browse files
committed
try removing compodoc
1 parent 99f8fad commit e2235f0

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.jsdoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
plugins: ['plugins/markdown', 'jsdoc-region-tag'],
2828
source: {
2929
excludePattern: '(^|\\/|\\\\)[._]',
30-
include: ['src'],
30+
include: ['build/src'],
3131
includePattern: '\\.js$',
3232
},
3333
templates: {

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"googleapis-common": "^7.0.0"
6060
},
6161
"devDependencies": {
62-
"@compodoc/compodoc": "1.1.23",
6362
"@types/execa": "^2.0.0",
6463
"@types/mocha": "^9.0.0",
6564
"@types/mv": "^2.1.0",
@@ -80,6 +79,9 @@
8079
"execa": "^5.0.0",
8180
"gaxios": "^6.0.3",
8281
"gts": "^5.0.0",
82+
"jsdoc": "^4.0.0",
83+
"jsdoc-fresh": "^3.0.0",
84+
"jsdoc-region-tag": "^3.0.0",
8385
"js-green-licenses": "^4.0.0",
8486
"linkinator": "^4.0.0",
8587
"mocha": "^9.2.2",

src/generator/docs.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@ export async function main() {
5858
.add(() =>
5959
gfs.execa(process.execPath, [
6060
'--max-old-space-size=8192',
61-
'./node_modules/.bin/compodoc',
62-
`src/apis/${dir}`,
63-
'-d',
64-
`./docs/${dir}`,
61+
'./node_modules/.bin/jsdoc',
62+
'-c',
63+
`.jsdoc.js`,
6564
])
6665
)
6766
.then(() => {

0 commit comments

Comments
 (0)