Совместил работу gulp и webpack. При сохранении js он автоматически переименовывает js файлы. Как это можно отключить?
function jsx() {
return src("./themes/scripts/jsx/**/*.js")
.pipe(
webpack({
mode: "production",
performance: { hints: false },
devtool: "eval-source-map",
module: {
rules: [
{
test: /\.(js)$/,
exclude: /(node_modules)/,
loader: "babel-loader",
query: {
presets: ["@babel/env"],
plugins: ["babel-plugin-root-import"],
plugins: [
[
"transform-react-jsx",
{
pragma: "wp.element.createElement",
},
],
],
},
},
],
},
})
)
.on("error", function handleError() {
this.emit("end");
})
.pipe(dest("./themes/scripts/ready/gutenberg-blocks/"))
.pipe(browserSync.stream());
}