Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

12 righe
495 B

  1. const viewGenerator = require('./plop-templates/view/prompt')
  2. const componentGenerator = require('./plop-templates/component/prompt')
  3. const storeGenerator = require('./plop-templates/store/prompt.js')
  4. const tableGenerator = require('./plop-templates/table/prompt.js')
  5. module.exports = function(plop) {
  6. plop.setGenerator('view', viewGenerator)
  7. plop.setGenerator('component', componentGenerator)
  8. plop.setGenerator('store', storeGenerator)
  9. plop.setGenerator('tablepage', tableGenerator)
  10. }