diff --git a/.changeset/fix-publishconfig.md b/.changeset/fix-publishconfig.md deleted file mode 100644 index 6f4f1a98..00000000 --- a/.changeset/fix-publishconfig.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'react-simplikit': patch -'@react-simplikit/mobile': patch ---- - -Fix broken package exports by moving main/types/module/exports from publishConfig to top-level package.json fields - -npm does not support publishConfig field overrides for manifest fields like main, types, and exports. The previous versions (react-simplikit@0.0.47, @react-simplikit/mobile@0.0.1) were published with incorrect entry points because publishConfig overrides were not applied during `npm publish`. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cd2158e0..3e18bab5 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # react-simplikit +## 0.0.48 + +### Patch Changes + +- [#318](https://github.com/toss/react-simplikit/pull/318) [`466e3ce`](https://github.com/toss/react-simplikit/commit/466e3ceab51a499abb141bc1fe138d9109cc0df5) Thanks [@kimyouknow](https://github.com/kimyouknow)! - Fix broken package exports by moving main/types/module/exports from publishConfig to top-level package.json fields + + npm does not support publishConfig field overrides for manifest fields like main, types, and exports. The previous versions (react-simplikit@0.0.47, @react-simplikit/mobile@0.0.1) were published with incorrect entry points because publishConfig overrides were not applied during `npm publish`. + ## 0.0.47 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 3083d8d8..04164dd0 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "react-simplikit", - "version": "0.0.47", + "version": "0.0.48", "main": "./dist/index.cjs", "module": "./esm/index.js", "types": "./dist/index.d.cts", diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index 73d09866..1f13e24c 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,13 @@ # @react-simplikit/mobile +## 0.0.2 + +### Patch Changes + +- [#318](https://github.com/toss/react-simplikit/pull/318) [`466e3ce`](https://github.com/toss/react-simplikit/commit/466e3ceab51a499abb141bc1fe138d9109cc0df5) Thanks [@kimyouknow](https://github.com/kimyouknow)! - Fix broken package exports by moving main/types/module/exports from publishConfig to top-level package.json fields + + npm does not support publishConfig field overrides for manifest fields like main, types, and exports. The previous versions (react-simplikit@0.0.47, @react-simplikit/mobile@0.0.1) were published with incorrect entry points because publishConfig overrides were not applied during `npm publish`. + ## 0.0.1 ### Patch Changes diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 76917452..de61c004 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@react-simplikit/mobile", - "version": "0.0.1", + "version": "0.0.2", "description": "Mobile web utilities for React - fixing viewport, keyboard, and layout issues", "type": "module", "main": "./dist/index.cjs",