sass-loader 14.2.0 → 14.2.1

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.
Files changed (2) hide show
  1. package/dist/utils.js +1 -1
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -585,7 +585,7 @@ function getCompileFn(loaderContext, implementation, options) {
585
585
  // Some people can run the loader in a multi-threading way;
586
586
  // there is no webpack compiler object in such case.
587
587
  if (webpackCompiler) {
588
- if (!sassModernCompilers.has(implementation)) {
588
+ if (!sassModernCompilers.has(webpackCompiler)) {
589
589
  // Create a long-running compiler process that can be reused
590
590
  // for compiling individual files.
591
591
  const compiler = await implementation.initAsyncCompiler();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-loader",
3
- "version": "14.2.0",
3
+ "version": "14.2.1",
4
4
  "description": "Sass loader for webpack",
5
5
  "license": "MIT",
6
6
  "repository": "webpack-contrib/sass-loader",