dependency-cruiser 12.5.0 → 12.5.1-beta-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.
- package/package.json +1 -1
- package/src/cache/utl.js +4 -1
- package/src/meta.js +1 -1
- package/types/README.md +0 -1
package/package.json
CHANGED
package/src/cache/utl.js
CHANGED
|
@@ -111,7 +111,10 @@ function moduleIsInterestingForDiff(pModule) {
|
|
|
111
111
|
!pModule.consolidated &&
|
|
112
112
|
!pModule.coreModule &&
|
|
113
113
|
!pModule.couldNotResolve &&
|
|
114
|
-
!pModule.matchesDoNotFollow
|
|
114
|
+
!pModule.matchesDoNotFollow &&
|
|
115
|
+
// as followable is optional, !exists when the module _is_ followable
|
|
116
|
+
// explicit comparison with false
|
|
117
|
+
pModule.followable !== false
|
|
115
118
|
);
|
|
116
119
|
}
|
|
117
120
|
|
package/src/meta.js
CHANGED
package/types/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-

|