UNPKG

light-boilerplate

Version:

Lightweight and powerfull startkit for your next project!

16 lines (13 loc) 308 B
/** * Template Files * Pick the right filetype for the Watch Tasks */ import meow from '../../config.json'; const templateFiles = () => { if (meow.template.compiler) { return meow.src.template + '**/*.twig'; } else { return meow.src.structure + '**/**'; } }; export default templateFiles;