@leverege/build-tools 2.69.2 → 2.69.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/generate-docs.mjs +1 -1
package/package.json
CHANGED
package/src/generate-docs.mjs
CHANGED
|
@@ -43,7 +43,7 @@ fs.mkdirSync( 'docs/md', { recursive : true } )
|
|
|
43
43
|
try {
|
|
44
44
|
await shellCmd( `npx --yes jsdoc -c ${jsdocConfig} -t ${jsdocTemplate} -R README.md -d docs src` )
|
|
45
45
|
await shellCmd(
|
|
46
|
-
`npx --yes --package=jsdoc-to-markdown jsdoc2md --files src/*.js --configure ${jsdocConfig}`,
|
|
46
|
+
`npx --yes --package=jsdoc-to-markdown jsdoc2md --files 'src/*.js' --configure ${jsdocConfig}`,
|
|
47
47
|
{ stdout : { file : 'docs/md/API.md' } }
|
|
48
48
|
)
|
|
49
49
|
} catch ( error ) {
|