Skip to content

Commit

Permalink
fix(@schematics/angular): remove the Reflect polyfill
Browse files Browse the repository at this point in the history
Only IE11 and less needs it. See http://kangax.github.io/compat-table/es6/\#test-Reflect

Fixes #206.
  • Loading branch information
hansl committed Oct 18, 2017
1 parent cc7eb56 commit 04dd7f5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.

/** IE10 and IE11 requires the following for the Reflect API. */
// import 'core-js/es6/reflect';


/** Evergreen browsers require these. **/
import 'core-js/es6/reflect';
// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
import 'core-js/es7/reflect';


Expand Down

0 comments on commit 04dd7f5

Please sign in to comment.