File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -81,12 +81,21 @@ function sassLoader(content) {
81
81
// Since we don't know the final filename in the webpack build chain yet, it makes no sense to have it.
82
82
// eslint-disable-next-line no-param-reassign
83
83
delete result . map . file ;
84
- // The first source is 'stdin' according to node-sass because we've used the data input.
84
+ // One of the sources is 'stdin' according to dart-sass/ node-sass because we've used the data input.
85
85
// Now let's override that value with the correct relative path.
86
86
// Since we specified options.sourceMap = path.join(process.cwd(), "/sass.map"); in normalizeOptions,
87
87
// we know that this path is relative to process.cwd(). This is how node-sass works.
88
88
// eslint-disable-next-line no-param-reassign
89
- result . map . sources [ 0 ] = path . relative ( process . cwd ( ) , resourcePath ) ;
89
+ const stdinIndex = result . map . sources . findIndex (
90
+ ( source ) => source . indexOf ( 'stdin' ) !== - 1
91
+ ) ;
92
+
93
+ if ( stdinIndex !== - 1 ) {
94
+ result . map . sources [ stdinIndex ] = path . relative (
95
+ process . cwd ( ) ,
96
+ resourcePath
97
+ ) ;
98
+ }
90
99
// node-sass returns POSIX paths, that's why we need to transform them back to native paths.
91
100
// This fixes an error on windows where the source-map module cannot resolve the source maps.
92
101
// @see https://github.com/webpack-contrib/sass-loader/issues/366#issuecomment-279460722
You can’t perform that action at this time.
0 commit comments