You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,11 @@ module count: 5
148
148
- type: Array | String | Function
149
149
- default: `null`
150
150
- description: Filter module to output in analysis results.
151
-
- If a string is passed, checks if module name contains the string. If array it checks the same for each string in the array. If function, return a boolean to indicate if a module should be in analysis results.
151
+
- If a string is passed, checks if module name contains the string
152
+
- If array it checks the same for each string in the array
153
+
- If function, return a boolean to indicate if a module should be in analysis results
154
+
- This only suppresses the modules details, it does not affect the summary output
155
+
- If you would like it to filter from summary info as well, let us know in [#19](https://github.com/doesdev/rollup-plugin-analyzer/issues/19)
152
156
- notes: Function receives `module` object specified below, should return boolean
153
157
-**root** - *optional*
154
158
- type: String
@@ -203,8 +207,8 @@ module count: 5
203
207
-**dependents***(Array)* - list of dependent module ids / paths
204
208
-**percent***(Number)* - percentage of module size relative to entire bundle
205
209
-**reduction***(Number)* - percentage of rendered size reduction
206
-
-**usedExports***(Array)* - list of used named exports
207
-
-**unusedExports***(Array)* - list of unused named exports
210
+
-**renderedExports***(Array)* - list of used named exports
211
+
-**removedExports***(Array)* - list of unused named exports
0 commit comments