mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
be05ad6dc7
no issue - makes debugging during development easier because there's a lot less indirection added to work around missing ES6 support in IE11
20 lines
351 B
JavaScript
20 lines
351 B
JavaScript
/* eslint-env node */
|
|
|
|
const browsers = [
|
|
'last 2 Chrome versions',
|
|
'last 2 Firefox versions',
|
|
'last 2 Safari versions',
|
|
'last 2 Edge versions'
|
|
];
|
|
|
|
const isCI = !!process.env.CI;
|
|
const isProduction = process.env.EMBER_ENV === 'production';
|
|
|
|
if (isCI || isProduction) {
|
|
browsers.push('ie 11');
|
|
}
|
|
|
|
module.exports = {
|
|
browsers
|
|
};
|