DEV: Remove ie 11 from build targets (#16652)
## Ember Upgrade Context: https://deprecations.emberjs.com/v3.x/#toc_3-0-browser-support-policy
This commit is contained in:
parent
142ae3b5e5
commit
cf273ec6e0
|
@ -6,13 +6,6 @@ const browsers = [
|
||||||
"last 1 Safari versions",
|
"last 1 Safari versions",
|
||||||
];
|
];
|
||||||
|
|
||||||
const isCI = !!process.env.CI;
|
|
||||||
const isProduction = process.env.EMBER_ENV === "production";
|
|
||||||
|
|
||||||
if (isCI || isProduction) {
|
|
||||||
browsers.push("ie 11");
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
browsers,
|
browsers,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue