Sha256: 0213bec97c2e20fe4b517c9be2c742a4361a914679875853d6d6ca14b15f4325
Contents?: true
Size: 609 Bytes
Versions: 15
Compression:
Stored size: 609 Bytes
Contents
"use strict"; const browsers = [ "last 1 Chrome versions", "last 1 Firefox versions", "last 1 Safari versions", ]; // Ember's browser support policy is changing, and IE11 support will end in // v4.0 onwards. // // See https://deprecations.emberjs.com/v3.x#toc_3-0-browser-support-policy // // If you need IE11 support on a version of Ember that still offers support // for it, uncomment the code block below. const isCI = Boolean(process.env.CI); const isProduction = process.env.EMBER_ENV === "production"; if (isCI || isProduction) { browsers.push("ie 11"); } module.exports = { browsers, };
Version data entries
15 entries across 15 versions & 1 rubygems