publish.js 197 B

123456
  1. var template = require('./utils/template');
  2. exports.publish = function(taffyData, opts, tutorials){
  3. template.configure(taffyData, opts, tutorials);
  4. template.postProcess();
  5. template.publish();
  6. };