Dropped IE11 browser target for transpilation

This commit is contained in:
Kevin Ansfield 2018-08-08 17:32:36 +01:00
parent 3d0091c9f5
commit 34fcf34e7c

View File

@ -7,13 +7,6 @@ const browsers = [
'last 2 Edge versions'
];
const isCI = !!process.env.CI;
const isProduction = process.env.EMBER_ENV === 'production';
if (isCI || isProduction) {
browsers.push('ie 11');
}
module.exports = {
browsers
};