From 4301dce7b0f753bf395e155f14f6769a4627164b Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Wed, 22 Feb 2017 15:33:27 -0800 Subject: [PATCH] fix(packaging): properly build the core-testing bundle --- modules/@angular/core/.babelrc-testing | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 modules/@angular/core/.babelrc-testing diff --git a/modules/@angular/core/.babelrc-testing b/modules/@angular/core/.babelrc-testing new file mode 100644 index 0000000000..d923e8fe24 --- /dev/null +++ b/modules/@angular/core/.babelrc-testing @@ -0,0 +1,12 @@ +{ + "presets": ["es2015"], + "plugins": [["transform-es2015-modules-umd", { + "globals": { + "@angular/core": "ng.core", + "@angular/core/testing": "ng.core.testing", + "rxjs/Subject": "Rx" + }, + "exactGlobals": true + }]], + "moduleId": "@angular/core/testing" +} \ No newline at end of file