File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ var FileSystemLoader = (function () {
48
48
49
49
this . root = root ;
50
50
this . sources = { } ;
51
- this . traces = { } ;
52
51
this . importNr = 0 ;
53
52
this . core = new _indexJs2 [ 'default' ] ( plugins ) ;
54
53
this . tokensByFile = { } ;
@@ -107,7 +106,6 @@ var FileSystemLoader = (function () {
107
106
var exportTokens = _ref . exportTokens ;
108
107
109
108
_this . sources [ fileRelativePath ] = injectableSource ;
110
- _this . traces [ trace ] = fileRelativePath ;
111
109
_this . tokensByFile [ fileRelativePath ] = exportTokens ;
112
110
resolve ( exportTokens ) ;
113
111
} , reject ) ;
@@ -117,12 +115,10 @@ var FileSystemLoader = (function () {
117
115
} , {
118
116
key : 'finalSource' ,
119
117
get : function ( ) {
120
- var traces = this . traces ;
121
118
var sources = this . sources ;
122
119
var written = { } ;
123
120
124
- return Object . keys ( traces ) . sort ( traceKeySorter ) . map ( function ( key ) {
125
- var filename = traces [ key ] ;
121
+ return this . deps . overallOrder ( ) . map ( function ( filename ) {
126
122
if ( written [ filename ] === true ) {
127
123
return null ;
128
124
}
You can’t perform that action at this time.
0 commit comments