diff --git a/.changeset/neat-shoes-yell.md b/.changeset/neat-shoes-yell.md deleted file mode 100644 index b02bf691..00000000 --- a/.changeset/neat-shoes-yell.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'renoun': minor ---- - -Allows instantiating `File` and `JavaScriptFile` more easily using only a `path`: - -```ts -import { JavaScriptFile } from 'renoun/file-system' - -const indexFile = new JavaScriptFile({ path: 'src/index.ts' }) -const indexFileExports = await indexFile.getExports() -``` diff --git a/.changeset/tiny-ears-whisper.md b/.changeset/tiny-ears-whisper.md deleted file mode 100644 index 60e2cb28..00000000 --- a/.changeset/tiny-ears-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'renoun': patch ---- - -Fixes duplicate exports when there are overloads. diff --git a/packages/renoun/CHANGELOG.md b/packages/renoun/CHANGELOG.md index d715b867..8d95bd2c 100644 --- a/packages/renoun/CHANGELOG.md +++ b/packages/renoun/CHANGELOG.md @@ -1,5 +1,22 @@ # renoun +## 7.10.0 + +### Minor Changes + +- e107c2f: Allows instantiating `File` and `JavaScriptFile` more easily using only a `path`: + + ```ts + import { JavaScriptFile } from 'renoun/file-system' + + const indexFile = new JavaScriptFile({ path: 'src/index.ts' }) + const indexFileExports = await indexFile.getExports() + ``` + +### Patch Changes + +- 54eeb9e: Fixes duplicate exports when there are overloads. + ## 7.9.0 ### Minor Changes diff --git a/packages/renoun/package.json b/packages/renoun/package.json index 553fccfa..b69339b5 100644 --- a/packages/renoun/package.json +++ b/packages/renoun/package.json @@ -1,6 +1,6 @@ { "name": "renoun", - "version": "7.9.0", + "version": "7.10.0", "description": "The Technical Content Toolkit for React", "author": "Travis Arnold", "license": "AGPL-3.0-or-later",