Skip to content

Commit

Permalink
[removed] a "generated on" timestamp in the footer of the documentati…
Browse files Browse the repository at this point in the history
…on files
  • Loading branch information
thealjey committed Oct 7, 2015
1 parent 1ce6c77 commit 1ea9389
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 372 deletions.
6 changes: 4 additions & 2 deletions bin/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@ import {JS, NativeProcess, SASSLint} from 'webcompiler';
import {join} from 'path';

const rootDir = join(__dirname, '..'),
modulesDir = join(rootDir, 'node_modules'),
binDir = join(rootDir, 'bin'),
buildDir = join(rootDir, 'build'),
libDir = join(rootDir, 'lib'),
devDir = join(rootDir, 'development'),
docsDir = join(rootDir, 'docs'),
specDir = join(rootDir, 'spec'),
readme = join(rootDir, 'README.md'),
jsdocConfig = join(modulesDir, 'webcompiler', 'config', 'jsdoc.json'),
style = join(rootDir, '_index.scss'),
devStyle = join(devDir, 'app.scss'),
js = new JS(),
jsdoc = new NativeProcess(join(rootDir, 'node_modules', '.bin', 'jsdoc'));
jsdoc = new NativeProcess(join(modulesDir, '.bin', 'jsdoc'));

new SASSLint().run([style, devStyle], function () {
js.beDir(libDir, buildDir, function () {
Expand All @@ -23,6 +25,6 @@ new SASSLint().run([style, devStyle], function () {
return console.error(e);
}
console.log('\x1b[32mGenerated API documentation!\x1b[0m');
}, [buildDir, '-d', docsDir, '-R', readme]);
}, [buildDir, '-d', docsDir, '-R', readme, '-c', jsdocConfig]);
}, specDir, binDir, devDir);
});
12 changes: 1 addition & 11 deletions docs/Combo.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,6 @@ <h5>Parameters:</h5>




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



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




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



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

<footer>
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)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a>
</footer>

<script> prettyPrint(); </script>
Expand Down
Loading

0 comments on commit 1ea9389

Please sign in to comment.