fix(bundles): rename the testing.js bundle

BREAKING CHANGE:

System.register testing bundle was renamed:
`testing.js` -> `testing.dev.js`

Closes #5899
Closes #5776
This commit is contained in:
Pawel Kozlowski 2015-12-15 10:56:55 +01:00 committed by Igor Minar
parent 61b9468596
commit d55655f5a3
1 changed files with 1 additions and 1 deletions

View File

@ -1109,7 +1109,7 @@ gulp.task('!bundle.testing', ['build.js.dev'], function() {
var devBundleConfig = merge(true, bundleConfig);
devBundleConfig.paths = merge(true, devBundleConfig.paths, {"*": "dist/js/dev/es5/*.js"});
return bundler.bundle(devBundleConfig, TESTING_BUNDLE_CONTENT, './dist/js/bundle/testing.js',
return bundler.bundle(devBundleConfig, TESTING_BUNDLE_CONTENT, './dist/js/bundle/testing.dev.js',
{sourceMaps: true});
});