From f7d78771f8c359021267bdc4a071ca7cfc8ac960 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 8 Sep 2017 11:12:31 -0400 Subject: [PATCH] fixes #5921 --- src/plugins/data.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/data.js b/src/plugins/data.js index ed81eed678..164fa8eb1c 100644 --- a/src/plugins/data.js +++ b/src/plugins/data.js @@ -196,7 +196,8 @@ function getScripts(pluginData, target, callback) { } var scripts = []; - async.each(input, function (filePath, next) { + async.eachSeries(input, function (filePath, next) { + console.log(filePath); resolveModulePath(pluginData.path, filePath, function (err, modulePath) { if (err) { return next(err);