Skip to content

Commit

Permalink
chore(release): 4.0.1 [skip ci]
Browse files Browse the repository at this point in the history
## [4.0.1](v4.0.0...v4.0.1) (2024-12-17)

### Bug Fixes

* **dist:** declaring sideEffects: false in package.json ([512142a](512142a))

  Fix declaring `sideEffects: false` in the package.json file with inadvertently breaks the likely most common usage of the package using `import 'yet-another-color-picker'` specifically for its side effect of registering the custom element.
  • Loading branch information
semantic-release-bot committed Dec 17, 2024
1 parent 512142a commit 52b21f1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [4.0.1](https://github.com/kleinfreund/yet-another-color-picker/compare/v4.0.0...v4.0.1) (2024-12-17)

### Bug Fixes

* **dist:** declaring sideEffects: false in package.json ([512142a](https://github.com/kleinfreund/yet-another-color-picker/commit/512142aea525e043e88154d5f4f4bec314fa2116))

Fix declaring `sideEffects: false` in the package.json file with inadvertently breaks the likely most common usage of the package using `import 'yet-another-color-picker'` specifically for its side effect of registering the custom element.

## [4.0.0](https://github.com/kleinfreund/yet-another-color-picker/compare/v3.0.1...v4.0.0) (2024-10-20)

### ⚠ BREAKING CHANGES
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yet-another-color-picker",
"version": "4.0.0",
"version": "4.0.1",
"license": "MIT",
"description": "Color picker web component",
"author": {
Expand Down

0 comments on commit 52b21f1

Please sign in to comment.