adapt-authoring-docs 1.4.1 → 1.4.2
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/bin/docgen.js +1 -1
- package/package.json +1 -1
package/bin/docgen.js
CHANGED
|
@@ -105,7 +105,7 @@ async function docs () {
|
|
|
105
105
|
|
|
106
106
|
try {
|
|
107
107
|
await fs.rm(outputdir, { recursive: true, force: true })
|
|
108
|
-
await fs.mkdir(outputdir)
|
|
108
|
+
await fs.mkdir(outputdir, { recursive: true })
|
|
109
109
|
await copyRootFiles()
|
|
110
110
|
await jsdoc3(appData, cachedConfigs, outputdir, defaultPages)
|
|
111
111
|
await docsify(appData, cachedConfigs, outputdir, defaultPages)
|
package/package.json
CHANGED