Alex Dima hace 4 años
padre
commit
d2adc1dcd9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -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;
 			}