Skip to content

Commit

Permalink
Fixes #2460
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed May 12, 2021
1 parent 3a7c892 commit d2adc1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -241,7 +241,7 @@ function ESM_pluginStream(plugin, destinationPath) {
pluginPath + '/**/*'
])
.pipe(es.through(function(data) {
if (!/\.js$/.test(data.path)) {
if (!/(\.js$)|(\.ts$)/.test(data.path)) {
this.emit('data', data);
return;
}
Expand Down

0 comments on commit d2adc1d

Please sign in to comment.