diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d6f5405..e28eff5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.0.1" + ".": "3.0.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ecdc694..fc68ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.2](https://github.com/justintaddei/v-wave/compare/v3.0.1...v3.0.2) (2024-09-11) + + +### Bug Fixes + +* incorrect mapping of mjs files in nuxt3 ([#790](https://github.com/justintaddei/v-wave/issues/790)) ([7a918d1](https://github.com/justintaddei/v-wave/commit/7a918d1fed124142e931cd35bcc6203c59fab0b2)) +* typescript errors in nuxt3 module ([#792](https://github.com/justintaddei/v-wave/issues/792)) ([02543de](https://github.com/justintaddei/v-wave/commit/02543de646c53b643f7a9a2280a6313f96d358cc)) + ## [3.0.1](https://github.com/justintaddei/v-wave/compare/v3.0.0...v3.0.1) (2024-09-11) diff --git a/package.json b/package.json index 81e8257..92b1005 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "v-wave", - "version": "3.0.1", + "version": "3.0.2", "license": "MIT", "description": "The material-ripple directive for Vue that actually works", "author": "Justin Taddei (https://justintaddei.com/)", @@ -9,7 +9,11 @@ "module": "dist/index.js", "types": "dist/index.d.ts", "unpkg": "dist/index.global.js", - "files": ["dist/**/*", "nuxt/**/*", "src/options.ts"], + "files": [ + "dist/**/*", + "nuxt/**/*", + "src/options.ts" + ], "exports": { "./nuxt": { "import": "./nuxt/index.ts",