File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -43,4 +43,4 @@ module.exports = {
43
43
markdown : {
44
44
idInHeadings : true ,
45
45
} ,
46
- } ;
46
+ } ;
Original file line number Diff line number Diff line change 19
19
"prepare" : " npm run compile" ,
20
20
"test" : " c8 mocha build/test" ,
21
21
"predocs" : " npm run build-tools" ,
22
- "docs" : " node build/src/generator/docs" ,
22
+ "docs" : " npm run compile && node build/src/generator/docs" ,
23
23
"predocs2" : " npm run compile" ,
24
24
"docs-extract" : " node --max-old-space-size=8192 ./node_modules/@microsoft/api-extractor/bin/api-extractor run --local --verbose" ,
25
25
"docs-md" : " node --max-old-space-size=8192 ./node_modules/@microsoft/api-documenter/bin/api-documenter markdown --input-folder build/docs --output-folder docs" ,
79
79
"execa" : " ^5.0.0" ,
80
80
"gaxios" : " ^6.0.3" ,
81
81
"gts" : " ^5.0.0" ,
82
+ "js-green-licenses" : " ^4.0.0" ,
82
83
"jsdoc" : " ^4.0.0" ,
83
84
"jsdoc-fresh" : " ^3.0.0" ,
84
85
"jsdoc-region-tag" : " ^3.0.0" ,
85
- "js-green-licenses" : " ^4.0.0" ,
86
86
"linkinator" : " ^4.0.0" ,
87
87
"mocha" : " ^9.2.2" ,
88
88
"mv" : " ^2.1.1" ,
Original file line number Diff line number Diff line change @@ -19,10 +19,11 @@ import * as path from 'path';
19
19
import { promisify } from 'util' ;
20
20
import Q from 'p-queue' ;
21
21
22
- const srcPath = path . join ( __dirname , '../../../src' ) ;
22
+ const rootPath = path . join ( __dirname , '../../..' ) ;
23
+ const srcPath = path . join ( rootPath , 'src' ) ;
23
24
const apiPath = path . join ( srcPath , 'apis' ) ;
24
25
const templatePath = path . join ( srcPath , 'generator/templates/index.html.njk' ) ;
25
- const docsPath = path . join ( __dirname , '../../../ docs' ) ;
26
+ const docsPath = path . join ( rootPath , 'docs' ) ;
26
27
const indexPath = path . join ( docsPath , 'index.html' ) ;
27
28
28
29
export const gfs = {
@@ -53,14 +54,14 @@ export async function main() {
53
54
const q = new Q ( { concurrency : 50 } ) ;
54
55
console . log ( `Generating docs for ${ dirs . length } APIs...` ) ;
55
56
let i = 0 ;
56
- const promises = dirs . map ( dir => {
57
+ const promises = dirs . map ( async dir => {
57
58
return q
58
59
. add ( ( ) =>
59
60
gfs . execa ( process . execPath , [
60
61
'--max-old-space-size=8192' ,
61
62
'./node_modules/.bin/jsdoc' ,
62
63
'-c' ,
63
- ` .jsdoc.js` ,
64
+ ' .jsdoc.js' ,
64
65
] )
65
66
)
66
67
. then ( ( ) => {
You can’t perform that action at this time.
0 commit comments