We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3107e commit 404ecbfCopy full SHA for 404ecbf
generate_docs.js
@@ -26,6 +26,10 @@ const IS_TRAVIS = !!process.env.TRAVIS;
26
const DOCGEN_DIR = IS_TRAVIS ? path.join('~', '.docgen') : tmp.dirSync().name;
27
const DOCGEN_PACKAGE_DIR = path.join(DOCGEN_DIR, kebob(PACKAGE_JSON.name));
28
29
+if (IS_TRAVIS) {
30
+ fs.mkdirSync(path.join('~', '.docgen'));
31
+}
32
+
33
const requiredKeys = [ 'typedoc', 'typedoc.generateOptions' ];
34
const missing = requiredKeys.find(key => !has(TYPEDOC_CONFIG, key));
35
if (missing) {
0 commit comments