@cloudflare/realtimekit 0.5.0-staging.59 → 0.5.0-staging.61
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/.config/vite.mock.es.ts +13 -0
- package/build-types.sh +2 -1
- package/dist/browser.js +15 -15
- package/dist/index.cjs.js +15 -15
- package/dist/index.d.ts +793 -794
- package/dist/index.es.js +13325 -16926
- package/dist/react.cjs.js +15 -15
- package/dist/react.d.ts +815 -791
- package/dist/react.es.js +13334 -16935
- package/package.json +13 -1
- package/dist/ts3.4/dist/index.d.ts +0 -4659
- package/dist/ts3.4/dist/react.d.ts +0 -4673
package/build-types.sh
CHANGED
|
@@ -19,6 +19,7 @@ trap restore EXIT
|
|
|
19
19
|
|
|
20
20
|
npx tsup src/index.ts --external @protobuf-ts/runtime,worker-timers,bowser,lodash-es,sdp-transform --dts-resolve --dts-only --format esm
|
|
21
21
|
npx tsup src/react.ts --external @protobuf-ts/runtime,worker-timers,bowser,lodash-es,sdp-transform --dts-resolve --dts-only --format esm
|
|
22
|
+
npx tsup src/mock.ts --external @protobuf-ts/runtime,worker-timers,bowser,lodash-es,sdp-transform --dts-resolve --dts-only --format esm
|
|
22
23
|
|
|
23
24
|
# temp hack till we replace dyte completely with realtimekit
|
|
24
25
|
OS="$(uname)"
|
|
@@ -33,4 +34,4 @@ else
|
|
|
33
34
|
fi
|
|
34
35
|
|
|
35
36
|
# Find and process all .d.ts files
|
|
36
|
-
find dist/ -name '*.d.ts' -exec bash -c "$SED_CMD \"{}\"" \;
|
|
37
|
+
find dist/ -name '*.d.ts' -exec bash -c "$SED_CMD \"{}\"" \;
|