From db6161c90dd0148e017f67eeb002a499fd9fd67f Mon Sep 17 00:00:00 2001 From: Francesco Boccacci Date: Tue, 11 Feb 2025 10:55:42 +0100 Subject: [PATCH] backport-725-to-v3.11.x - https://github.com/g3w-suite/g3w-client/pull/725 (#728) --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 42c930576..c4a1e45c4 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -232,6 +232,7 @@ const browserify_plugin = (pluginName, watch = true) => { .pipe(gulpif(production, sourcemaps.write('.'))) .pipe(gulp.dest(src)) // put plugin.js to plugin folder (git source) .pipe(gulp.dest(outputFolder)) // put plugin.js to static folder (PROD | DEV env) + .pipe(gulp.dest(`${g3w.pluginsFolder}/${pluginName}`)) // put plugin.js to plugin code folder .pipe(gulpif(!production, browserSync.reload({ stream: true }))); // refresh browser after changing local files (dev mode) };