We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138b3ea commit 406b6c4Copy full SHA for 406b6c4
src/utils.js
@@ -72,10 +72,10 @@ function getSassImplementation(loaderContext, implementation) {
72
// eslint-disable-next-line consistent-return
73
return resolvedImplementation;
74
} else if (implementationName === "node-sass") {
75
- if (!semver.satisfies(version, "^4.0.0 || ^5.0.0 || ^6.0.0")) {
+ if (!semver.satisfies(version, "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0")) {
76
loaderContext.emitError(
77
new Error(
78
- `Node Sass version ${version} is incompatible with ^4.0.0 || ^5.0.0 || ^6.0.0.`
+ `Node Sass version ${version} is incompatible with ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0.`
79
)
80
);
81
}
0 commit comments