From ec54fe22183827b162490b43c65f4638606d102a Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Fri, 10 Aug 2018 12:29:45 -0400 Subject: [PATCH] fix(@schematics/angular): ensure non-evergreen IE browsers are excluded --- .../schematics/angular/application/files/root/browserslist | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/schematics/angular/application/files/root/browserslist b/packages/schematics/angular/application/files/root/browserslist index 8e09ab492e26..37371cb04b9f 100644 --- a/packages/schematics/angular/application/files/root/browserslist +++ b/packages/schematics/angular/application/files/root/browserslist @@ -1,9 +1,11 @@ # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers # For additional information regarding the format and rule options, please see: # https://github.com/browserslist/browserslist#queries -# For IE 9-11 support, please uncomment the last line of the file and adjust as needed +# +# For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed + > 0.5% last 2 versions Firefox ESR not dead -# IE 9-11 \ No newline at end of file +not IE 9-11 \ No newline at end of file