From d55655f5a3936e76f87bd5db4871659db98fbf00 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Tue, 15 Dec 2015 10:56:55 +0100 Subject: [PATCH] fix(bundles): rename the testing.js bundle BREAKING CHANGE: System.register testing bundle was renamed: `testing.js` -> `testing.dev.js` Closes #5899 Closes #5776 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e61ba8076e..ec35a5e4c7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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}); });