Skip to content

Commit

Permalink
Fixing entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Dec 13, 2024
1 parent edfd0f2 commit b47a7f6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 5 additions & 11 deletions packages/motion-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
10 changes: 5 additions & 5 deletions packages/motion-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit b47a7f6

Please sign in to comment.