Only transpile for IE11 target in CI & production builds

no issue
- makes debugging during development easier because there's a lot less indirection added to work around missing ES6 support in IE11
This commit is contained in:
Kevin Ansfield 2018-02-28 14:53:34 +00:00
parent cbf98a9a80
commit bf43bd3075
1 changed files with 15 additions and 7 deletions

View File

@ -1,11 +1,19 @@
/* 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: [
'ie 11',
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 Safari versions',
'last 2 Edge versions'
]
browsers
};