cf273ec6 removed ie11 as a target. A side effect is that this also removed support for Safari 12, which we will be maintaining support for until January 2023
https://meta.discourse.org/t/224747
20 lines
352 B
JavaScript
20 lines
352 B
JavaScript
"use strict";
|
|
|
|
const isCI = !!process.env.CI;
|
|
const isProduction = process.env.EMBER_ENV === "production";
|
|
|
|
const browsers = [
|
|
"last 1 Chrome versions",
|
|
"last 1 Firefox versions",
|
|
"last 1 Safari versions",
|
|
];
|
|
|
|
if (isCI || isProduction) {
|
|
// https://meta.discourse.org/t/224747
|
|
browsers.push("Safari 12");
|
|
}
|
|
|
|
module.exports = {
|
|
browsers,
|
|
};
|