Skip to content

Commit

Permalink
fix(bundle): add ./esm/index.js to package.sideEffects (#5488)
Browse files Browse the repository at this point in the history
  • Loading branch information
pearmini authored Aug 30, 2023
1 parent 0a2b233 commit 9bb6d58
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [5.0.24](https://github.com/antvis/g2/compare/5.0.23...5.0.24) (2023-08-30)


### Bug Fixes

* **test:** call defined render function ([#5481](https://github.com/antvis/g2/issues/5481)) ([c0c5746](https://github.com/antvis/g2/commit/c0c574683f3cd97b1813fa3dc7454137b8ae6ad4))
* **theme:** update default color of light theme ([#5487](https://github.com/antvis/g2/issues/5487)) ([7cbe9a7](https://github.com/antvis/g2/commit/7cbe9a7cf8ea537c274288c4f55118b9544ae622))


### Features

* 3d line plot ([#5471](https://github.com/antvis/g2/issues/5471)) ([4d157cd](https://github.com/antvis/g2/commit/4d157cd162a805d8a68a29a5abf216074fb2058f))
* **builtinlib:** move some components from core to builtinlib ([#5485](https://github.com/antvis/g2/issues/5485)) ([fc70bf5](https://github.com/antvis/g2/commit/fc70bf5423b73b1b06ff3b551e2a5a5902dd3527))
* **lib:** change graphlib and plotlib ([#5484](https://github.com/antvis/g2/issues/5484)) ([ad175a0](https://github.com/antvis/g2/commit/ad175a0b232552c94c3c6d6305da28a9c42ee497))



## [5.0.23](https://github.com/antvis/g2/compare/5.0.22...5.0.23) (2023-08-29)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "5.0.23",
"version": "5.0.24",
"description": "the Grammar of Graphics in Javascript",
"license": "MIT",
"main": "lib/index.js",
Expand Down Expand Up @@ -42,7 +42,7 @@
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"sideEffects": [
"./src/index.ts"
"./esm/index.js"
],
"keywords": [
"antv",
Expand Down
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.23",
"version": "5.0.24",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
Expand Down

0 comments on commit 9bb6d58

Please sign in to comment.