Skip to content

Commit

Permalink
Fixing entrypoint fallbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Oct 11, 2024
1 parent 4b5453d commit eec04d4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 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 @@ Framer Motion adheres to [Semantic Versioning](http://semver.org/).

Undocumented APIs should be considered internal and may change without warning.

## [11.11.8] 2024-10-11

### Fixed

- Fixing fallback `package.json` for entrypoints in older versions of Node.

## [11.11.7] 2024-10-09

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions packages/framer-motion/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
!dist/**
!LICENSE.md
!dom/package.json
!dom/mini/package.json
!m/package.json
!mini/package.json
!client/package.json
6 changes: 6 additions & 0 deletions packages/framer-motion/dom/mini/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"private": true,
"types": "../../dist/dom-mini.d.ts",
"main": "../../dist/cjs/dom-mini.js",
"module": "../../dist/es/dom-mini.mjs"
}
6 changes: 6 additions & 0 deletions packages/framer-motion/mini/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"private": true,
"types": "../dist/mini.d.ts",
"main": "../dist/cjs/mini.js",
"module": "../dist/es/mini.mjs"
}

0 comments on commit eec04d4

Please sign in to comment.