File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ module.exports = async function() {
70
70
} ,
71
71
npm : {
72
72
devDependencies : {
73
- '@ember/jquery' : '^0.5.1 '
73
+ '@ember/jquery' : '^1.1.0 '
74
74
}
75
75
}
76
76
} ,
Original file line number Diff line number Diff line change @@ -6,13 +6,12 @@ const browsers = [
6
6
'last 1 Safari versions'
7
7
] ;
8
8
9
- // TODO: Temporary fix for Travis tests
10
- // const isCI = !!process.env.CI;
11
- // const isProduction = process.env.EMBER_ENV === 'production';
12
- //
13
- // if (isCI || isProduction) {
14
- // browsers.push('ie 11');
15
- // }
9
+ const isCI = Boolean ( process . env . CI ) ;
10
+ const isProduction = process . env . EMBER_ENV === 'production' ;
11
+
12
+ if ( isCI || isProduction ) {
13
+ browsers . push ( 'ie 11' ) ;
14
+ }
16
15
17
16
module . exports = {
18
17
browsers
You can’t perform that action at this time.
0 commit comments