Skip to content

Commit

Permalink
chore: release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nonzzz committed Mar 16, 2024
1 parent 07d89d9 commit b4c41b4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.9.0

# Features

- Add rollup adapter.

```js
import { analyzer, adapter } from "vite-bundle-analyzer";

plugins: [adapter(analyzer())];
```

## 0.8.3

# Patches
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export default defineConfig({
analyzer(),
],
});

// If you are using it in rollup you can import 'adapter' from package.
// Then use it with adapter(analyzer())
```

## Options
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vite-bundle-analyzer",
"packageManager": "yarn@3.6.3",
"version": "0.8.3",
"version": "0.9.0",
"description": "a vite bundle analyzer",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit b4c41b4

Please sign in to comment.