diff --git a/.changeset/curly-hounds-mix.md b/.changeset/curly-hounds-mix.md new file mode 100644 index 00000000..b26f6b0e --- /dev/null +++ b/.changeset/curly-hounds-mix.md @@ -0,0 +1,7 @@ +--- +"@kobalte/tests": patch +"@kobalte/utils": patch +"@kobalte/core": patch +--- + +fix: nexgen ts module resolutions diff --git a/apps/docs/src/VERSIONS.ts b/apps/docs/src/VERSIONS.ts index 4d938a48..e0fc4ede 100644 --- a/apps/docs/src/VERSIONS.ts +++ b/apps/docs/src/VERSIONS.ts @@ -10,6 +10,7 @@ export const CORE_VERSIONS = [ "0.6.2", "0.7.0", "0.7.1", + "0.7.2", ].reverse(); export const LATEST_CORE_CHANGELOG_URL = `/docs/changelog/${CORE_VERSIONS[0].replaceAll(".", "-")}`; diff --git a/apps/docs/src/routes/docs/changelog/0-7-2.mdx b/apps/docs/src/routes/docs/changelog/0-7-2.mdx new file mode 100644 index 00000000..42fb916c --- /dev/null +++ b/apps/docs/src/routes/docs/changelog/0-7-2.mdx @@ -0,0 +1,7 @@ +# v0.7.2 + +**March 08, 2023**. + +## Bug fixes + +- [#135](https://github.com/kobaltedev/kobalte/pull/135) diff --git a/packages/core/package.json b/packages/core/package.json index deb034dc..b9127847 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -28,6 +28,7 @@ "type": "module", "exports": { ".": { + "types": "./dist/index.d.ts", "solid": "./dist/index.jsx", "import": { "types": "./dist/index.d.ts", diff --git a/packages/tests/package.json b/packages/tests/package.json index 9675dbf3..94452e6e 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -28,6 +28,7 @@ "type": "module", "exports": { ".": { + "types": "./dist/index.d.ts", "solid": "./dist/index.jsx", "import": { "types": "./dist/index.d.ts", diff --git a/packages/utils/package.json b/packages/utils/package.json index 5d1ac771..8add78e7 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -28,6 +28,7 @@ "type": "module", "exports": { ".": { + "types": "./dist/index.d.ts", "solid": "./dist/index.jsx", "import": { "types": "./dist/index.d.ts",