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.
Files changed (2) hide show
  1. package/bin/docgen.js +1 -1
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adapt-authoring-docs",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Tools for auto-generating documentation for the Adapt authoring tool",
5
5
  "homepage": "https://github.com/adapt-security/adapt-authoring-docs",
6
6
  "license": "GPL-3.0",