index.js 377 B

12345678910111213141516
  1. const fs = require("fs") ;
  2. console.log ( "demo plugin loaded" ) ;
  3. // Assigning to exports will not modify module, must use module.exports
  4. module.exports = (options, ctx) => {
  5. console.log ( { options , ctx } ) ;
  6. console.log ( { pages : ctx.pages , sourceDir : ctx.sourceDir }) ;
  7. console.log ( { me : this} ) ;
  8. console.trace() ;
  9. return {
  10. fruit : 'Banana'
  11. }
  12. }