From f7e1e041398deed871f4a9e3a29481a2a8c3fc22 Mon Sep 17 00:00:00 2001 From: tmarshall Date: Mon, 23 Apr 2018 20:27:01 -0700 Subject: [PATCH] https://github.com/lukeed/taskr/issues/310 --- taskfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskfile.js b/taskfile.js index c93d9e4..6080959 100644 --- a/taskfile.js +++ b/taskfile.js @@ -13,7 +13,7 @@ module.exports.lib = async function lib(task, opts) { } module.exports.copyProcs = async function copyProcs(task) { - await task.source('procs/**/*').target('dist/procs') + await task.source('procs/**/*.js').target('dist/procs') await task.source('procs/**/.*').target('dist/procs') }