@@ -55,6 +55,7 @@ exports.bundle = function(loads, compileOpts, outputOpts) {
55
55
return ;
56
56
57
57
var loader = this ;
58
+ var importLoader = new loader . constructor ( ) ;
58
59
59
60
// backwards compat with fileURL for rootURL
60
61
if ( loader . rootURL && loader . rootURL . substr ( 0 , 5 ) == 'file:' )
@@ -70,6 +71,7 @@ exports.bundle = function(loads, compileOpts, outputOpts) {
70
71
71
72
var inputFiles = { } ;
72
73
cssLoads . forEach ( function ( load ) {
74
+ importLoader . builder = load . metadata . builder ;
73
75
inputFiles [ path . relative ( baseURLPath , fromFileURL ( load . address ) ) ] = {
74
76
source : load . metadata . style ,
75
77
sourceMap : load . metadata . styleSourceMap
@@ -84,11 +86,28 @@ exports.bundle = function(loads, compileOpts, outputOpts) {
84
86
85
87
var cwd = process . cwd ( ) ;
86
88
89
+ importLoader . translate = function ( load ) {
90
+ return loader . translate . call ( this , load ) . then ( function ( ) {
91
+ if ( load . metadata . style ) {
92
+ inputFiles [ path . relative ( baseURLPath , fromFileURL ( load . address ) ) ] = {
93
+ source : load . metadata . style ,
94
+ sourceMap : load . metadata . styleSourceMap
95
+ } ;
96
+ }
97
+ } ) ;
98
+ } ;
99
+
87
100
var postCssPlugins = [ atImport ( {
88
101
resolve : function ( fileName , dirname , opts ) {
89
- if ( absUrl ( fileName ) )
90
- return fileName ;
91
- return path . relative ( baseURLPath , path . join ( dirname , fileName ) ) ;
102
+ var resolved = fileName ;
103
+ if ( ! absUrl ( fileName ) ) {
104
+ fileName = path . join ( dirname , fileName ) ;
105
+ resolved = path . relative ( baseURLPath , fileName ) ;
106
+ }
107
+
108
+ return importLoader . import ( fileName , module . id ) . then ( function ( ) {
109
+ return resolved ;
110
+ } ) ;
92
111
} ,
93
112
load : function ( fileName , opts ) {
94
113
if ( absUrl ( fileName ) )
0 commit comments