From 7c95cea3a89506b6ca0d91503d08f56f19661092 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Mon, 13 Apr 2015 21:16:21 +0200 Subject: [PATCH] chore(bundle): avoid imports in "global" format If an "empty" file (like angular2/template.js) is imported it is auto-detected as the one using "global" format by the system builder. This is incorrect as the entire angular2 build output is in the ES6 format. Removing empty import till it has some content. Closes #1329 --- modules/angular2/angular2.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/angular2/angular2.js b/modules/angular2/angular2.js index 4304148b5b..41f8bda3fa 100644 --- a/modules/angular2/angular2.js +++ b/modules/angular2/angular2.js @@ -1,6 +1,5 @@ export * from './change_detection'; export * from './core'; export * from './annotations'; -export * from './template'; export * from './directives'; export * from './forms';