Skip to content

Commit

Permalink
chore: release v0.16.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nonzzz committed Dec 3, 2024
1 parent 11baa8d commit dc3bd14
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
- name: Pack and Publish
run: |
make build-all
TAG_NAME=$(echo $GITHUB_REF | sed 's/refs\/tags\///')
if [[ $TAG_NAME == *"-beta."* ]]; then
npm publish --tag beta --provenance --access public
else
npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.16.0-beta.1

Add more friendly API for integrate.

## 0.15.2

Expose `render` and other methods to better integrate into custom tools.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-bundle-analyzer",
"version": "0.15.2",
"version": "0.16.0-beta.1",
"description": "a modern vite bundle analyzer tool",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit dc3bd14

Please sign in to comment.