diff --git a/.changeset/lemon-walls-promise.md b/.changeset/lemon-walls-promise.md deleted file mode 100644 index b932d3f..0000000 --- a/.changeset/lemon-walls-promise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"three-inspect": patch ---- - -Fix exports for vanilla projects diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ebcce..d51ea4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # three-inspect +## 0.4.3 + +### Patch Changes + +- 2803c98: Fix exports for vanilla projects + ## 0.4.2 ### Patch Changes @@ -25,10 +31,10 @@ Adding the inspector for Vanilla environments has changed: ```ts - import { createInspector } from 'three-inspect' + import { createInspector } from "three-inspect"; - const inspector = createInspector({ scene, camera, renderer }) + const inspector = createInspector({ scene, camera, renderer }); // When you're finished with the inspector... - inspector.dispose() + inspector.dispose(); ```