mirror of
https://github.com/documize/community.git
synced 2025-07-24 07:39:43 +02:00
Upgrade to Ember 3.1.2 ++
Also disabled optional feature Application Template Wrapper.
This commit is contained in:
parent
09d698fd2a
commit
95323c90ee
7 changed files with 4230 additions and 2165 deletions
|
@ -1,8 +1,18 @@
|
|||
'use strict';
|
||||
|
||||
const browsers = [
|
||||
'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: [
|
||||
'ie 9',
|
||||
'last 1 Chrome versions',
|
||||
'last 1 Firefox versions',
|
||||
'last 1 Safari versions'
|
||||
]
|
||||
browsers
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue