Skip to content

Commit 1ea9389

Browse files
committed
[removed] a "generated on" timestamp in the footer of the documentation files
1 parent 1ce6c77 commit 1ea9389

4 files changed

Lines changed: 6 additions & 372 deletions

File tree

bin/build.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ import {JS, NativeProcess, SASSLint} from 'webcompiler';
44
import {join} from 'path';
55

66
const rootDir = join(__dirname, '..'),
7+
modulesDir = join(rootDir, 'node_modules'),
78
binDir = join(rootDir, 'bin'),
89
buildDir = join(rootDir, 'build'),
910
libDir = join(rootDir, 'lib'),
1011
devDir = join(rootDir, 'development'),
1112
docsDir = join(rootDir, 'docs'),
1213
specDir = join(rootDir, 'spec'),
1314
readme = join(rootDir, 'README.md'),
15+
jsdocConfig = join(modulesDir, 'webcompiler', 'config', 'jsdoc.json'),
1416
style = join(rootDir, '_index.scss'),
1517
devStyle = join(devDir, 'app.scss'),
1618
js = new JS(),
17-
jsdoc = new NativeProcess(join(rootDir, 'node_modules', '.bin', 'jsdoc'));
19+
jsdoc = new NativeProcess(join(modulesDir, '.bin', 'jsdoc'));
1820

1921
new SASSLint().run([style, devStyle], function () {
2022
js.beDir(libDir, buildDir, function () {
@@ -23,6 +25,6 @@ new SASSLint().run([style, devStyle], function () {
2325
return console.error(e);
2426
}
2527
console.log('\x1b[32mGenerated API documentation!\x1b[0m');
26-
}, [buildDir, '-d', docsDir, '-R', readme]);
28+
}, [buildDir, '-d', docsDir, '-R', readme, '-c', jsdocConfig]);
2729
}, specDir, binDir, devDir);
2830
});

docs/Combo.html

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,6 @@ <h5>Parameters:</h5>
139139

140140

141141

142-
143-
<dt class="tag-source">Source:</dt>
144-
<dd class="tag-source"><ul class="dummy"><li>
145-
<a href="Combo.js.html">Combo.js</a>, <a href="Combo.js.html#line55">line 55</a>
146-
</li></ul></dd>
147142

148143

149144

@@ -251,11 +246,6 @@ <h4 class="name" id="getLabel"><span class="type-signature"></span>getLabel<span
251246

252247

253248

254-
255-
<dt class="tag-source">Source:</dt>
256-
<dd class="tag-source"><ul class="dummy"><li>
257-
<a href="Combo.js.html">Combo.js</a>, <a href="Combo.js.html#line190">line 190</a>
258-
</li></ul></dd>
259249

260250

261251

@@ -324,7 +314,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Combo.htm
324314
<br class="clear">
325315

326316
<footer>
327-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Wed Oct 07 2015 11:58:08 GMT+0300 (EEST)
317+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a>
328318
</footer>
329319

330320
<script> prettyPrint(); </script>

0 commit comments

Comments
 (0)