From f4db27c8ca57db19f7d79509587e9940398889d5 Mon Sep 17 00:00:00 2001 From: Vladimir Grinenko Date: Thu, 2 Jun 2016 01:34:47 +0300 Subject: [PATCH] Match dot files by glob It's needed since libs now generates files with `.tmp.*` prefix instead of `bundle-name.*` --- src/tasks/send-examples.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/send-examples.js b/src/tasks/send-examples.js index f12eb18..36b7a9b 100644 --- a/src/tasks/send-examples.js +++ b/src/tasks/send-examples.js @@ -60,7 +60,7 @@ module.exports = inherit(Base, { return vow.resolve(); } - return vowNode.promisify(glob)(this.createGlobPattern(), { cwd: process.cwd(), nodir: true }) + return vowNode.promisify(glob)(this.createGlobPattern(), { cwd: process.cwd(), nodir: true, dot: true }) .then(function (files) { if (o.examples) { files = files.filter(function (file) {