Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 24ca929

Browse files
committed
chore(typescript): fix gulp tsc to log to console
1 parent 608104b commit 24ca929

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

gulpfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ gulp.task('typings', function(done) {
3939
});
4040

4141
gulp.task('tsc', function(done) {
42-
runSpawn(done, 'node_modules/typescript/bin/tsc');
42+
var tsc = spawn('node_modules/typescript/bin/tsc');
43+
tsc.stdout.on('data', function(data) {
44+
process.stdout.write(data.toString());
45+
});
4346
});
4447

4548
gulp.task('prepublish', function(done) {

lib/taskScheduler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default class TaskScheduler {
6363
(path) => { return capabilitiesSpecExcludes.indexOf(path) < 0; });
6464
}
6565

66-
let specLists: Array<string> = [];
66+
let specLists: Array<Array<string>> = [];
6767
// If we shard, we return an array of one element arrays, each containing
6868
// the spec file. If we don't shard, we return an one element array
6969
// containing an array of all the spec files

0 commit comments

Comments
 (0)