sass-loader 16.0.3 → 16.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -147,6 +147,7 @@ Thankfully there are two solutions to this problem:
147
147
  - **[`additionalData`](#additionaldata)**
148
148
  - **[`webpackImporter`](#webpackimporter)**
149
149
  - **[`warnRuleAsWarning`](#warnruleaswarning)**
150
+ - **[`api`](#api)**
150
151
 
151
152
  ### `implementation`
152
153
 
@@ -315,7 +316,6 @@ Please consult their respective documentation before using them:
315
316
  - [Dart Sass documentation](https://sass-lang.com/documentation/js-api/interfaces/Options) for all available `sass` options.
316
317
  - [Sass Embedded documentation](https://github.com/sass/embedded-host-node) for all available `sass` options.
317
318
  - [Node Sass documentation](https://github.com/sass/node-sass/#options) for all available `node-sass` options.
318
- - [Sass Embedded documentation](https://github.com/sass/embedded-host-node) for all available `sass` options.
319
319
 
320
320
  #### `object`
321
321
 
package/dist/utils.js CHANGED
@@ -159,6 +159,7 @@ async function getSassOptions(loaderContext, loaderOptions, content, implementat
159
159
  }
160
160
  if (useSourceMap) {
161
161
  sassOptions.sourceMap = true;
162
+ sassOptions.sourceMapIncludeSources = true;
162
163
  }
163
164
 
164
165
  // If we are compiling sass and indentedSyntax isn't set, automatically set it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-loader",
3
- "version": "16.0.3",
3
+ "version": "16.0.4",
4
4
  "description": "Sass loader for webpack",
5
5
  "license": "MIT",
6
6
  "repository": "webpack-contrib/sass-loader",