diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-25 14:29:51 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-25 14:29:51 +0200 |
commit | ac2ad8d8b5b539cc86c13229d230caa2dd461afa (patch) | |
tree | 78f2703d3d53922495815e7f6e60ce02cd8fc492 /lib/output/website/options.js | |
parent | 14ce495e9e6f162a74ef1e202fef62855da2a5fc (diff) | |
download | gitbook-ac2ad8d8b5b539cc86c13229d230caa2dd461afa.zip gitbook-ac2ad8d8b5b539cc86c13229d230caa2dd461afa.tar.gz gitbook-ac2ad8d8b5b539cc86c13229d230caa2dd461afa.tar.bz2 |
Add conrefs loader for templating
Diffstat (limited to 'lib/output/website/options.js')
-rw-r--r-- | lib/output/website/options.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/output/website/options.js b/lib/output/website/options.js new file mode 100644 index 0000000..79167b1 --- /dev/null +++ b/lib/output/website/options.js @@ -0,0 +1,8 @@ +var Immutable = require('immutable'); + +var Options = Immutable.Record({ + // Root folder for the output + root: String() +}); + +module.exports = Options; |