Remove IE 11 as Build Target (#14757)

* removes ie 11 as build target

* updates browserstack testem config to launch tests in firefox instead of ie 11
This commit is contained in:
Jordan Reimer 2022-03-30 08:42:21 -06:00 committed by GitHub
parent 2354435262
commit c3f7bf6940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 14 deletions

View File

@ -1,15 +1,10 @@
'use strict';
const browsers = ['last 1 Chrome versions', 'last 1 Firefox versions', 'last 1 Safari versions'];
const isCI = Boolean(process.env.CI);
const isProduction = process.env.EMBER_ENV === 'production';
// TODO CBS: Remove ie 11
if (isCI || isProduction) {
browsers.push('ie 11');
}
module.exports = {
browsers,
browsers: [
'last 1 edge versions',
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions',
],
};

View File

@ -44,8 +44,7 @@ const appConfig = {
autoprefixer: {
enabled: isTest || isProd,
grid: true,
// TODO CBS: Remove IE
browsers: ['defaults', 'ie 11'],
browsers: ['defaults'],
},
autoImport: {
forbidEval: true,

View File

@ -83,7 +83,7 @@ module.exports = {
},
},
launch_in_dev: [],
launch_in_ci: ['BS_IE_11'],
launch_in_ci: ['BS_Firefox_Current'],
proxies: {
'/v1': {
target: 'http://localhost:9200',