@@ -77,26 +77,25 @@ function findIssues (configuration, children, results) {
77
77
if ( children ) {
78
78
children . forEach ( function ( child ) {
79
79
if (
80
- ! configuration . productionOnly ||
81
- ! child . dev
82
- ) {
83
- var result = resultForPackage ( configuration , child )
84
- // Deduplicate.
85
- var existing = results . find ( function ( existing ) {
86
- return (
87
- existing . name === result . name &&
88
- existing . version === result . version
89
- )
90
- } )
91
- if ( existing ) {
92
- if ( existing . duplicates ) {
93
- existing . duplicates . push ( result )
94
- } else {
95
- existing . duplicates = [ result ]
96
- }
80
+ configuration . productionOnly &&
81
+ child . dev
82
+ ) return
83
+ var result = resultForPackage ( configuration , child )
84
+ // Deduplicate.
85
+ var existing = results . find ( function ( existing ) {
86
+ return (
87
+ existing . name === result . name &&
88
+ existing . version === result . version
89
+ )
90
+ } )
91
+ if ( existing ) {
92
+ if ( existing . duplicates ) {
93
+ existing . duplicates . push ( result )
97
94
} else {
98
- results . push ( result )
95
+ existing . duplicates = [ result ]
99
96
}
97
+ } else {
98
+ results . push ( result )
100
99
}
101
100
} )
102
101
return results
@@ -105,14 +104,15 @@ function findIssues (configuration, children, results) {
105
104
106
105
function resultForPackage ( configuration , tree ) {
107
106
var packageAllowlist = configuration . packages || { }
107
+ console . log ( '%s is %j' , 'tree.package' , tree . package )
108
108
var result = {
109
109
name : tree . name ,
110
+ version : tree . version ,
110
111
license : tree . package . license ,
111
112
author : tree . package . author ,
112
113
contributors : tree . package . contributors ,
113
114
repository : tree . package . repository ,
114
115
homepage : tree . package . homepage ,
115
- version : tree . package . version ,
116
116
parent : tree . parent ,
117
117
path : tree . realpath
118
118
}
0 commit comments