1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: sass is not a dependency

Signed-off-by: Gabriel <gaccettola@mirantis.com>
This commit is contained in:
Gabriel 2023-04-19 13:09:18 +02:00
parent 2128731b94
commit af37e63375

View File

@ -20,7 +20,7 @@ class ProtectFromImportingNonDependencies {
const dependencyName = getDependencyName(toBeResolved.request);
const dependencyWeAreInterested =
!isSassDependency && !isLocalDependency && !isDependencyOfDependency && dependencyName;
!isSassDependency && !isLocalDependency && !isDependencyOfDependency && dependencyName;
if (dependencyWeAreInterested) {
nodeModulesToBeResolved.add(dependencyName);