index.js 606 B

12345678910111213141516171819202122
  1. (function() {
  2. var ContentPlugin, ContentTree, Environment, TemplatePlugin, ref;
  3. ref = require('./core/content'), ContentTree = ref.ContentTree, ContentPlugin = ref.ContentPlugin;
  4. Environment = require('./core/environment').Environment;
  5. TemplatePlugin = require('./core/templates').TemplatePlugin;
  6. module.exports = function() {
  7. return Environment.create.apply(null, arguments);
  8. };
  9. module.exports.Environment = Environment;
  10. module.exports.ContentPlugin = ContentPlugin;
  11. module.exports.ContentTree = ContentTree;
  12. module.exports.TemplatePlugin = TemplatePlugin;
  13. }).call(this);