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 36c8108 commit b4363d4Copy full SHA for b4363d4
generate_docs.js
@@ -23,7 +23,7 @@ const TYPEDOC_CONFIG = JSON.parse(fs.readFileSync('./typedoc.json'));
23
const PACKAGE_DIR = process.cwd();
24
const DOWNSTREAM_CACHE = path.join(PACKAGE_DIR, '.downstream_cache');
25
const IS_TRAVIS = !!process.env.TRAVIS;
26
-const DOCGEN_DIR = IS_TRAVIS ? path.join('~', '.docgen') ? tmp.dirSync().name;
+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
const requiredKeys = [ 'typedoc', 'typedoc.generateOptions' ];
0 commit comments