rollup-plugin-analyzer
Advanced tools
Comparing version 3.2.1 to 3.2.2
@@ -5,2 +5,11 @@ ### Changelog | ||
### UNRELEASED | ||
### [3.2.2](https://github.com/doesdev/rollup-plugin-analyzer/compare/3.2.1...3.2.2) | ||
> 1 November 2019 | ||
- Hack: Coalesce bundleMods | ||
- Update dev deps | ||
### [3.2.1](https://github.com/doesdev/rollup-plugin-analyzer/compare/3.2.0...3.2.1) | ||
@@ -7,0 +16,0 @@ |
@@ -176,2 +176,3 @@ 'use strict'; | ||
Object.entries(bundle).forEach(([outId, { modules: bundleMods }]) => { | ||
bundleMods = bundleMods || {}; | ||
Object.entries(bundleMods).forEach(([id, moduleInfo]) => { | ||
@@ -178,0 +179,0 @@ const dependencies = getDeps(id); |
@@ -176,2 +176,3 @@ 'use strict' | ||
Object.entries(bundle).forEach(([outId, { modules: bundleMods }]) => { | ||
bundleMods = bundleMods || {} | ||
Object.entries(bundleMods).forEach(([id, moduleInfo]) => { | ||
@@ -178,0 +179,0 @@ const dependencies = getDeps(id) |
{ | ||
"name": "rollup-plugin-analyzer", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "Mad metrics for your rollup bundles, know all the things", | ||
@@ -13,4 +13,5 @@ "engines" : { "node" : ">=8.0.0" }, | ||
"scripts": { | ||
"test": "standard module.js && node ./node_modules/rollup/dist/bin/rollup -c && node test/test.js --verbose", | ||
"precommit": "standard module.js && node ./node_modules/rollup/dist/bin/rollup -c && node test/test.js --verbose && git add index.js" | ||
"build": "standard module.js && node ./node_modules/rollup/dist/bin/rollup -c", | ||
"test": "yarn run build && node test/test.js --verbose", | ||
"precommit": "yarn run build && node test/test.js && git add index.js" | ||
}, | ||
@@ -43,3 +44,3 @@ "repository": { | ||
"devDependencies": { | ||
"husky": "^3.0.4", | ||
"husky": "^3.0.9", | ||
"mvt": "4.0.0", | ||
@@ -49,5 +50,5 @@ "rollup": "npm:rollup@latest", | ||
"rollup60": "npm:rollup@0.60.x", | ||
"standard": "^14.0.2" | ||
"standard": "^14.3.1" | ||
}, | ||
"dependencies": {} | ||
} |
35385
325