From ed900bc0fbdc22ab5c6180692b08d1652ec1e539 Mon Sep 17 00:00:00 2001 From: Yair Even Or Date: Sun, 21 Apr 2024 20:21:03 +0200 Subject: [PATCH] gulpfile main file output changed from `tagify.min.js` to `tagify.js` --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index df525e8c..9afe9e44 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -124,7 +124,7 @@ function react(done){ function js(done){ return bundle({ entry: 'src/tagify.js', - outputName: 'tagify.min.js' + outputName: 'tagify.js' }) .on('end', done) }