Tim Marshall
Results
2
issues of
Tim Marshall
I have a taskfile that has a portion like this: ```js module.exports.copyProcs = async function copyProcs(task) { await task.source('procs/**/*.js').target('dist/procs') await task.source('procs/**/.*').target('dist/procs') } module.exports.copyConf = async function copyConf(task) { await task.source('conf/**/.*').target('dist/conf')...
With a small number of options the output seems to work fine. But with a long list, the process exits before finishing the console log. And it seems to get...