Skip to content

Commit

Permalink
Merge pull request #905 from ember-cli/fixup-targets
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed May 8, 2023
2 parents 1fc58f4 + cfb954a commit e1659b3
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions test-app/config/targets.js
@@ -1,18 +1,11 @@
'use strict';
"use strict";

const browsers = [
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions'
"last 1 Chrome versions",
"last 1 Firefox 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 = {
browsers
browsers,
};

0 comments on commit e1659b3

Please sign in to comment.