diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a94a11..0429c55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.10.3 + +# Patches + +- Fix static report does not work. #29 + ## 0.10.2 # Patches diff --git a/package.json b/package.json index 67f8cd4..e2f20d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vite-bundle-analyzer", - "version": "0.10.2", + "version": "0.10.3", "description": "a vite bundle analyzer", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/src/client/components/search-modules.tsx b/src/client/components/search-modules.tsx index eba369d..014cb21 100644 --- a/src/client/components/search-modules.tsx +++ b/src/client/components/search-modules.tsx @@ -57,7 +57,6 @@ export function SearchModules(props: SearchModulesProps) { }) as FilterModule[] } }) - console.log(filtered) return filtered }, [regExp, files, extra])