Skip to content

Commit 6bba289

Browse files
committed
fix(build): build the broccoli tools with correct typescript version.
By default, gulp-typescript currently depends on typescript 1.4, which doesn't work for us. For example, it doesn't allow `let` when emitting ES5, along with lots of other errors. It so happens that npm sometimes makes this work, as seen by the warning ```npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/gulp-typescript requires typescript@'1.4.1' but will load npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/typescript, npm WARN unmet dependency which is version 1.5.0``` but when we update our node_modules in a certain way, we lose this setup and it breaks. We should be explicit about using a different version of typescript than gulp-typescript depends on.
1 parent b0c735f commit 6bba289

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

gulpfile.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -550,13 +550,16 @@ gulp.task('build.tools', ['build/clean.tools'], function(done) {
550550
// private task to build tools
551551
gulp.task('!build.tools', function() {
552552
var tsResult = gulp.src(['tools/**/*.ts'])
553-
.pipe(sourcemaps.init())
554-
.pipe(tsc({target: 'ES5', module: 'commonjs', reporter: tsc.reporter.nullReporter()}))
555-
.on('error', function(error) {
556-
// gulp-typescript doesn't propagate errors from the src stream into the js stream so we are
557-
// forwarding the error into the merged stream
558-
mergedStream.emit('error', error);
559-
});
553+
.pipe(sourcemaps.init())
554+
.pipe(tsc({target: 'ES5', module: 'commonjs', reporter: tsc.reporter.nullReporter(),
555+
// Don't use the version of typescript that gulp-typescript depends on, we need 1.5
556+
// see https://github.com/ivogabe/gulp-typescript#typescript-version
557+
typescript: require('typescript')}))
558+
.on('error', function(error) {
559+
// gulp-typescript doesn't propagate errors from the src stream into the js stream so we are
560+
// forwarding the error into the merged stream
561+
mergedStream.emit('error', error);
562+
});
560563

561564
var destDir = gulp.dest('dist/tools/');
562565

0 commit comments

Comments
 (0)