From ad578bb693a13ded89529231137d2ae373d86500 Mon Sep 17 00:00:00 2001 From: Max Bondar <4bondar@gmail.com> Date: Mon, 18 Dec 2017 20:49:00 +0200 Subject: [PATCH] Update index.js Usefull fix for user parametrs example --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 52b82b2..8628748 100644 --- a/index.js +++ b/index.js @@ -84,6 +84,7 @@ function addAssetsToStream(paths, files) { .pipe(gulpif(!options.noconcat, concat(name, gulpConcatOptions))) .pipe(through.obj(function (newFile, encoding, callback) { // specify an output path relative to the cwd + newFile.path = newFile.path.split("?")[0]; if (options.base) { newFile.path = path.join(options.base, name); newFile.base = options.base;