From 385d30d6ce97256fa186f68e13ca6b206c5975d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Gr=C3=B6nwoldt?= Date: Wed, 10 Mar 2021 13:38:12 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Etask/smartjs.js=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed not using correct output path --- task/smartjs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/task/smartjs.js b/task/smartjs.js index 7fcafa0..09bcd91 100644 --- a/task/smartjs.js +++ b/task/smartjs.js @@ -20,6 +20,7 @@ class JSWorker { this.watch = this.helper.replaceVariables(this.config.watch || '$/**/*.js'); this.prepareFiles(this.config.files) this.path = path.parse(this.out); + this.path = this.path.dir + "/" + this.path.base + "/"; gulp.task(this.taskName, this.work.bind(this)); }