Skip to content

Commit 2ee32fb

Browse files
alexeaglevsavkin
authored andcommitted
chore(typescript 1.6 upgrade): fix build.tools
1 parent 1cf4575 commit 2ee32fb

12 files changed

+747
-205
lines changed

gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ gulp.task('!build.tools', function() {
944944
var stream = gulp.src(['tools/**/*.ts'])
945945
.pipe(sourcemaps.init())
946946
.pipe(tsc({target: 'ES5', module: 'commonjs',
947-
// Don't use the version of typescript that gulp-typescript depends on, we need 1.5
947+
// Don't use the version of typescript that gulp-typescript depends on
948948
// see https://github.com/ivogabe/gulp-typescript#typescript-version
949949
typescript: require('typescript')}))
950950
.on('error', function(error) {
@@ -1147,7 +1147,7 @@ gulp.task('!bundle.js.sfx.dev', ['build.js.dev'], function() {
11471147
.then(function() {
11481148
return bundler.bundle(devBundleConfig, 'angular2/http', './dist/build/http.sfx.dev.js',
11491149
{sourceMaps: true},
1150-
/* self-executing */ true)
1150+
/* self-executing */ true);
11511151
});
11521152
});
11531153

0 commit comments

Comments
 (0)