mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 02:57:59 +00:00
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:
@@ -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',
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user