Skip to content

Commit 44987e7

Browse files
Jeferson OliveiraJeferson Oliveira
authored andcommitted
Removed no longer used "filter" parameter.
1 parent 1ca0e2b commit 44987e7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ elixir.extend('typescript', function (output, dest, options) {
1818

1919
new Task(pluginName, function () {
2020
var tsResult = gulp.src(assetPath + '/**/*.ts')
21-
.pipe(ts(options, undefined)).on('error', function(e) {
22-
new elixir.Notification().error(e, 'TypeScript Compilation Failed!');
23-
this.emit('end');
24-
});
21+
.pipe(ts(options))
22+
.on('error', function(e) {
23+
new elixir.Notification().error(e, 'TypeScript Compilation Failed!');
24+
this.emit('end');
25+
});
2526
return tsResult
2627
.pipe(concat(output))
2728
.pipe(gulp.dest(dest || './public/js/app.js'))

0 commit comments

Comments
 (0)