File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ var ConfigFileInfo = ClassicFileInfo.extend({
55
66
77 init : function ( options ) {
8+ // sourceRoot needs to be set before the super call so that non js files stay in place
9+ options . sourceRoot = '.' ;
810 this . _super ( options ) ;
11+
912 options . type = 'config' ;
1013 options . base = '.' ;
11- options . sourceRoot = '.' ;
1214 } ,
1315
1416 populateCollection : function ( ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ module.exports = {
1010 }
1111 } ,
1212 config : {
13- 'environment.js' : '"ENV"'
13+ 'environment.js' : '"ENV"' ,
14+ foo : {
15+ 'baz.sh' : 'yolo'
16+ }
1417 } ,
1518 tests : {
1619 'helpers' : {
Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ module.exports = {
1919 }
2020 } ,
2121 config : {
22- 'environment.js' : '"ENV"'
22+ 'environment.js' : '"ENV"' ,
23+ foo : {
24+ 'baz.sh' : 'yolo'
25+ }
2326 } ,
2427 tests : {
2528 'helpers' : {
You can’t perform that action at this time.
0 commit comments