summaryrefslogtreecommitdiffstats
path: root/lib/output/website/options.js
blob: eca8a8dc171f13df8d0e3dd1f70eafdd79298fc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
var Immutable = require('immutable');

var Options = Immutable.Record({
    // Root folder for the output
    root:       String(),

    // Prefix for generation
    prefix:     String('website')
});

module.exports = Options;