fix(bundles): remove work-around rx.js module detection.

Updates rx to the newest version, because a fix is needed.

Closes #1245
This commit is contained in:
Rado Kirov
2015-04-06 16:43:53 -07:00
committed by Pawel Kozlowski
parent ca958464c4
commit c349eb4fa4
3 changed files with 14 additions and 6 deletions

View File

@ -15,6 +15,5 @@ module.exports.bundle = function(buildConfig, moduleName, outputFile, outputConf
module.exports.modify = function(srcs, concatName) {
return gulp.src(srcs)
.pipe(concat(concatName))
.pipe(replace('use strict', '')) // remove after https://github.com/systemjs/builder/issues/123 is fixed.
.pipe(replace('sourceMappingURL', 'sourceMappingURLDisabled')) // TODO: add concat for sourceMaps
}