diff --git a/CHANGELOG.md b/CHANGELOG.md index b4fe3f2b5c..6f089ba08a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Motion adheres to [Semantic Versioning](http://semver.org/). Undocumented APIs should be considered internal and may change without warning. +## [11.14.3] 2024-12-13 + +### Fixed + +- Fixing `motion-dom` and `motion-utils` entrypoints. + ## [11.14.2] 2024-12-13 ### Fixed diff --git a/packages/motion-dom/package.json b/packages/motion-dom/package.json index b873f9e3c6..001f740add 100644 --- a/packages/motion-dom/package.json +++ b/packages/motion-dom/package.json @@ -4,21 +4,15 @@ "author": "Matt Perry", "license": "MIT", "repository": "https://github.com/motiondivision/motion", - "main": "./lib/index.js", - "types": "./types/index.d.ts", - "module": "./lib/index.js", + "main": "./dist/cjs/index.js", + "types": "./dist/index.d.ts", + "module": "./dist/es/index.mjs", "exports": { ".": { - "types": "./types/index.d.ts", + "types": "./dist/index.d.ts", "require": "./dist/cjs/index.js", "import": "./dist/es/index.mjs", - "default": "./lib/index.js" - }, - "./hover": { - "types": "./types/gestures/hover.d.ts", - "require": "./dist/cjs/gestures/hover.js", - "import": "./dist/es/gestures/hover.mjs", - "default": "./lib/gestures/hover.js" + "default": "./dist/cjs/index.js" } }, "scripts": { diff --git a/packages/motion-utils/package.json b/packages/motion-utils/package.json index 3e46c85e9d..f4b46efc50 100644 --- a/packages/motion-utils/package.json +++ b/packages/motion-utils/package.json @@ -4,15 +4,15 @@ "author": "Matt Perry", "license": "MIT", "repository": "https://github.com/motiondivision/motion", - "main": "./lib/index.js", - "types": "./types/index.d.ts", - "module": "./lib/index.js", + "main": "./dist/cjs/index.js", + "types": "./dist/index.d.ts", + "module": "./dist/es/index.mjs", "exports": { ".": { - "types": "./types/index.d.ts", + "types": "./dist/index.d.ts", "require": "./dist/cjs/index.js", "import": "./dist/es/index.mjs", - "default": "./lib/index.js" + "default": "./dist/cjs/index.js" } }, "scripts": {