all files / packages/website/processors/ config.js

46.15% Statements 6/13
100% Branches 0/0
20% Functions 1/5
46.15% Lines 6/13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                                   
'use strict';
 
module.exports = function generateConfigProcessor(log) {
 
  var debug = log.debug;
 
  var title = "";
  var version = "";
  var root = "api";
 
  return {
    title: function(t) {
      title = t;
      return this;
    },
    version: function(v) {
      version = v;
      return this;
    },
    rootArea: function(r) {
      root = r;
      return this;
    },
    $runBefore: ['rendering-docs'],
    $process: function (docs) {
      docs.push({
        area: 'website',
        docType: 'config-data',
        id: 'config',
        name: 'data/config.js',
        config: {
            TITLE: title,
            ROOT: root,
            VERSION: version
        }
      });
    }
  };
};