Skip to content

Commit

Permalink
Merge pull request #393 from ismail9k/release/0.3.4
Browse files Browse the repository at this point in the history
Release/0.3.4
  • Loading branch information
ismail9k authored Sep 13, 2024
2 parents d8b7863 + 4f7ca03 commit a951072
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [0.3.4](https://github.com/ismail9k/vue3-carousel/releases/tag/v0.3.3) - 2024-04-02

- Full support for esm (#373) @Iran-110

## [0.3.2](https://github.com/ismail9k/vue3-carousel/releases/tag/v0.3.3) - 2024-04-02

- Anchor links (a tags) redirect the app to the new page after dragging (#362) @Iran-110
Expand Down
18 changes: 17 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue3-carousel",
"version": "0.3.3",
"version": "0.3.4",
"type": "module",
"scripts": {
"build": "rollup -c",
Expand All @@ -20,6 +20,22 @@
"type": "git",
"url": "https://github.com/ismail9k/vue3-carousel.git"
},
"exports": {
".": {
"types": "./dist/carousel.d.ts",
"import": "./dist/carousel.es.js",
"require": "./dist/carousel.js"
},
"./dist/carousel": {
"types": "./dist/carousel.d.ts",
"import": "./dist/carousel.es.js",
"require": "./dist/carousel.js"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"main": "dist/carousel.js",
"module": "dist/carousel.es.js",
"style": "dist/carousel.css",
Expand Down

0 comments on commit a951072

Please sign in to comment.