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:
parent
2354435262
commit
c3f7bf6940
|
@ -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',
|
||||
],
|
||||
};
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue