Merge pull request #1814 from marcjansen/no-jsdoc-googx

Exclude `googx/dom/fullscreen.js` from API-docs
This commit is contained in:
Marc Jansen
2014-03-06 17:12:28 +01:00
2 changed files with 8 additions and 2 deletions

View File

@@ -8,7 +8,13 @@
}, },
"source": { "source": {
"includePattern": ".+\\.js(doc)?$", "includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_" "excludePattern": "(^|\\/|\\\\)_",
"exclude": [
"src/googx/dom/fullscreen.js"
],
"include": [
"src"
]
}, },
"plugins": [ "plugins": [
"plugins/markdown", "plugins/markdown",

View File

@@ -625,7 +625,7 @@ virtual('apidoc', 'build/jsdoc-%(BRANCH)s-timestamp' % vars(variables))
'build/src/external/src/exports.js', SRC, SHADER_SRC, 'build/src/external/src/exports.js', SRC, SHADER_SRC,
ifind('apidoc/template')) ifind('apidoc/template'))
def jsdoc_BRANCH_timestamp(t): def jsdoc_BRANCH_timestamp(t):
t.run('%(JSDOC)s', '-c', 'apidoc/conf.json', 'src', 'apidoc/index.md', t.run('%(JSDOC)s', 'apidoc/index.md', '-c', 'apidoc/conf.json',
'-d', 'build/hosted/%(BRANCH)s/apidoc') '-d', 'build/hosted/%(BRANCH)s/apidoc')
t.touch() t.touch()