From 301863b1052dd53635db2fcad45b99550e4895c4 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 13 Apr 2015 11:16:21 -0700 Subject: [PATCH] chore(build): transpile only e2e test code into cjs --- tools/broccoli/make-broccoli-tree.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/broccoli/make-broccoli-tree.js b/tools/broccoli/make-broccoli-tree.js index 4120e30b2c..72567684a6 100644 --- a/tools/broccoli/make-broccoli-tree.js +++ b/tools/broccoli/make-broccoli-tree.js @@ -144,9 +144,7 @@ function makeCjsTree() { var outputPackages = ['angular2', 'benchpress', 'rtts_assert']; var modulesTree = new Funnel('modules', { - // TODO(broccoli): this is wrong. it should be just - // include: ['angular2/**', 'benchpress/**', 'rtts_assert/**', 'benchmarks/e2e_test/**'], - include: ['**/**'], + include: ['angular2/**', 'benchpress/**', 'rtts_assert/**', '**/e2e_test/**'], exclude: ['angular2/src/core/zone/vm_turn_zone.es6'] });