escomplex-plugin-metrics-module
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -344,4 +344,4 @@ 'use strict'; | ||
Object.keys(indices).forEach(function (index) { | ||
classReport[index] = classAverages[indices[index]]; | ||
Object.keys(indices).forEach(function (key) { | ||
classReport[key] = classAverages[indices[key]]; | ||
}); | ||
@@ -366,4 +366,4 @@ }); | ||
Object.keys(indices).forEach(function (index) { | ||
report[index] = moduleAverages[indices[index]]; | ||
Object.keys(indices).forEach(function (key) { | ||
report[key] = moduleAverages[indices[key]]; | ||
}); | ||
@@ -370,0 +370,0 @@ } |
{ | ||
"name": "escomplex-plugin-metrics-module", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"homepage": "https://github.com/typhonjs-node-escomplex/escomplex-plugin-metrics-module/", | ||
@@ -23,6 +23,6 @@ "description": "Provides the core module metric / report generation plugin for typhonjs-escomplex module processing.", | ||
"dependencies": { | ||
"typhonjs-escomplex-commons": "^0.0.7" | ||
"typhonjs-escomplex-commons": "^0.0.8" | ||
}, | ||
"devDependencies": { | ||
"escomplex-plugin-syntax-babylon": "^0.0.3", | ||
"escomplex-plugin-syntax-babylon": "^0.0.4", | ||
"typhonjs-ast-walker": "^0.1.0", | ||
@@ -29,0 +29,0 @@ "typhonjs-config-eslint": "^0.4.0", |
@@ -1,3 +0,1 @@ | ||
'use strict'; | ||
import HalsteadArray from 'typhonjs-escomplex-commons/src/module/traits/HalsteadArray'; | ||
@@ -307,3 +305,3 @@ import MethodReport from 'typhonjs-escomplex-commons/src/module/report/MethodReport'; | ||
Object.keys(indices).forEach((index) => { classReport[index] = classAverages[indices[index]]; }); | ||
Object.keys(indices).forEach((key) => { classReport[key] = classAverages[indices[key]]; }); | ||
}); | ||
@@ -327,4 +325,4 @@ | ||
Object.keys(indices).forEach((index) => { report[index] = moduleAverages[indices[index]]; }); | ||
Object.keys(indices).forEach((key) => { report[key] = moduleAverages[indices[key]]; }); | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48708
580
+ Addedtyphonjs-escomplex-commons@0.0.8(transitive)
- Removedtyphonjs-escomplex-commons@0.0.7(transitive)