cleanup(testing): create top level files for mocks

Closes #5381
This commit is contained in:
vsavkin
2015-11-24 09:57:24 -08:00
committed by Victor Savkin
parent 89eefcd7b5
commit 8daa9b202d
13 changed files with 21 additions and 11 deletions

View File

@ -991,7 +991,7 @@ gulp.task("!bundle.web_worker.js.dev", ["build.js.dev"], function() {
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, 'angular2/testing + angular2/mock - angular2/angular2',
return bundler.bundle(devBundleConfig, 'angular2/testing - angular2/angular2',
'./dist/js/bundle/testing.js', {sourceMaps: true});
});