@zapier/kitcore 0.17.0 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @zapier/kitcore
|
|
2
2
|
|
|
3
|
+
## 0.17.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 52b672a: Added a `browser` field that maps `node:async_hooks` to `false`, so bundling `@zapier/kitcore` for the browser no longer fails on that Node-only import. Its `AsyncLocalStorage`-backed contexts already fall back to inert when the module is unavailable, so Node behavior is unchanged.
|
|
8
|
+
|
|
9
|
+
`openEnum`'s return type is now written out rather than inferred. The generated declaration expanded it into a form TypeScript rejected (`TS2536`), which surfaced as an error in `dist/index.d.mts` for anyone typechecking with `skipLibCheck: false`.
|
|
10
|
+
|
|
3
11
|
## 0.17.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|