File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ module . exports = {
2+ app : {
3+ 'app.js' : 'import config from "./config/environment";' ,
4+ utils : {
5+ 'first.js' : 'import config from "my-app/config/environment";' ,
6+ 'second.js' : 'import config from "../config/environment";'
7+ }
8+ } ,
9+ config : {
10+ 'environment.js' : '"ENV"'
11+ } ,
12+ tests : {
13+ unit : {
14+ utils : {
15+ 'first-test.js' : 'import config from "../../../config/environment";' ,
16+ 'second-test.js' : 'import config from "my-app/config/environment";'
17+ }
18+ }
19+ }
20+ } ;
Original file line number Diff line number Diff line change 1+ module . exports = {
2+ src : {
3+ 'main.js' : 'import config from "../config/environment";' ,
4+ utils : {
5+ first : {
6+ 'util.js' : 'import config from "my-app/config/environment";' ,
7+ 'util-unit-test.js' : 'import config from "../../../config/environment";'
8+ } ,
9+ second : {
10+ 'util.js' : 'import config from "../../../config/environment";' ,
11+ 'util-unit-test.js' : 'import config from "my-app/config/environment";'
12+ }
13+ }
14+ } ,
15+ config : {
16+ 'environment.js' : '"ENV"'
17+ }
18+ } ;
You can’t perform that action at this time.
0 commit comments