Skip to content

Commit d43e7e4

Browse files
committed
bump documenation lib
1 parent 199437f commit d43e7e4

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"chai-subset": "1.6.0",
134134
"cheerio": "^1.0.0",
135135
"contributor-faces": "1.1.0",
136-
"documentation": "12.3.0",
136+
"documentation": "14.0.3",
137137
"electron": "33.2.0",
138138
"eslint": "8.57.0",
139139
"eslint-config-airbnb-base": "15.0.0",

runok.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const fs = require('fs')
33
const path = require('path')
44
const axios = require('axios')
5-
const documentation = require('documentation')
5+
66
const {
77
stopOnFail,
88
chdir,
@@ -13,6 +13,12 @@ const contributors = require('contributor-faces')
1313
const { execSync } = require('node:child_process')
1414
const semver = require('semver')
1515

16+
let documentation
17+
18+
import('documentation').then(mod =>
19+
documentation = mod,
20+
);
21+
1622
const helperMarkDownFile = function (name) {
1723
return `docs/helpers/${name}.md`
1824
}

0 commit comments

Comments
 (0)