This repository was archived by the owner on Nov 1, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +10
-13
lines changed Expand file tree Collapse file tree 6 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,16 @@ module.exports = function() {
7
7
getChannelURL ( 'release' ) ,
8
8
getChannelURL ( 'beta' ) ,
9
9
getChannelURL ( 'canary' )
10
- ] ) . then ( ( urls ) => {
10
+ ] ) . then ( urls => {
11
11
return {
12
12
useYarn : true ,
13
13
scenarios : [
14
14
{
15
15
name : 'ember-lts-2.18' ,
16
16
env : {
17
- EMBER_OPTIONAL_FEATURES : JSON . stringify ( { 'jquery-integration' : true } )
17
+ EMBER_OPTIONAL_FEATURES : JSON . stringify ( {
18
+ 'jquery-integration' : true
19
+ } )
18
20
} ,
19
21
npm : {
20
22
devDependencies : {
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
module . exports = function ( /* environment, appConfig */ ) {
4
- return { } ;
4
+ return { } ;
5
5
} ;
Original file line number Diff line number Diff line change 3
3
const EmberAddon = require ( 'ember-cli/lib/broccoli/ember-addon' ) ;
4
4
5
5
module . exports = function ( defaults ) {
6
- let app = new EmberAddon ( defaults , {
6
+ const app = new EmberAddon ( defaults , {
7
7
// Add options here
8
8
} ) ;
9
9
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
test_page : 'tests/index.html?hidepassed' ,
3
3
disable_watching : true ,
4
- launch_in_ci : [
5
- 'Chrome'
6
- ] ,
7
- launch_in_dev : [
8
- 'Chrome'
9
- ] ,
4
+ launch_in_ci : [ 'Chrome' ] ,
5
+ launch_in_dev : [ 'Chrome' ] ,
10
6
browser_args : {
11
7
Chrome : {
12
8
ci : [
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ const Router = EmberRouter.extend({
6
6
rootURL : config . rootURL
7
7
} ) ;
8
8
9
- Router . map ( function ( ) {
10
- } ) ;
9
+ Router . map ( function ( ) { } ) ;
11
10
12
11
export default Router ;
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
module . exports = function ( environment ) {
4
- let ENV = {
4
+ const ENV = {
5
5
modulePrefix : 'dummy' ,
6
6
environment,
7
7
rootURL : '/' ,
You can’t perform that action at this time.
0 commit comments