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'; '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 = { 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: { autoprefixer: {
enabled: isTest || isProd, enabled: isTest || isProd,
grid: true, grid: true,
// TODO CBS: Remove IE browsers: ['defaults'],
browsers: ['defaults', 'ie 11'],
}, },
autoImport: { autoImport: {
forbidEval: true, forbidEval: true,

View File

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