diff --git a/.changeset/ninety-lights-occur.md b/.changeset/ninety-lights-occur.md deleted file mode 100644 index dc4ad19..0000000 --- a/.changeset/ninety-lights-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@webiny/stdlib": patch ---- - -Add BrowserWindow abstraction to decouple browser features from the global `window` object, with real and null implementations. Replace silent `void` returns with `Result` pattern across `DirectoryTool.create`, `FileTool.writeFile`/`copy`, `JsonFileTool.writeJson`, and `PackageJsonFileTool.write`. Add `createOrThrow` to DirectoryTool. New typed errors: `DirectoryCreateError`, `FileWriteError`, `FileCopyError`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 24db5db..b002e5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @webiny/stdlib +## 0.0.18 + +### Patch Changes + +- f2b1bf6: Add BrowserWindow abstraction to decouple browser features from the global `window` object, with real and null implementations. Replace silent `void` returns with `Result` pattern across `DirectoryTool.create`, `FileTool.writeFile`/`copy`, `JsonFileTool.writeJson`, and `PackageJsonFileTool.write`. Add `createOrThrow` to DirectoryTool. New typed errors: `DirectoryCreateError`, `FileWriteError`, `FileCopyError`. + ## 0.0.17 ### Patch Changes diff --git a/package.json b/package.json index d1fb1d7..9b1d67b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@webiny/stdlib", - "version": "0.0.17", + "version": "0.0.18", "type": "module", "description": "Standard library for Webiny — platform-agnostic, Node.js, and browser utilities", "license": "MIT",