@livestore/common-cf 0.0.0-snapshot-86129a4b8d413098e304959ccc507f3d6281408f → 0.0.0-snapshot-4746c6906f476b419b8d0d3afe7a8ebe17b37dc8

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/dist/cf-types.js CHANGED
@@ -1,2 +1,4 @@
1
1
  export {};
2
+ // We can't re-export the types from `cloudflare:workers` because they rely on having loaded the `@cloudflare/workers-types`
3
+ // which should only be done in the application, not in the library.
2
4
  //# sourceMappingURL=cf-types.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cf-types.js","sourceRoot":"","sources":["../src/cf-types.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"cf-types.js","sourceRoot":"","sources":["../src/cf-types.ts"],"names":[],"mappings":";AACA,4HAA4H;AAC5H,oEAAoE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livestore/common-cf",
3
- "version": "0.0.0-snapshot-86129a4b8d413098e304959ccc507f3d6281408f",
3
+ "version": "0.0.0-snapshot-4746c6906f476b419b8d0d3afe7a8ebe17b37dc8",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -9,13 +9,13 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@cloudflare/workers-types": "4.20250923.0",
12
- "@livestore/common": "0.0.0-snapshot-86129a4b8d413098e304959ccc507f3d6281408f",
13
- "@livestore/utils": "0.0.0-snapshot-86129a4b8d413098e304959ccc507f3d6281408f"
12
+ "@livestore/common": "0.0.0-snapshot-4746c6906f476b419b8d0d3afe7a8ebe17b37dc8",
13
+ "@livestore/utils": "0.0.0-snapshot-4746c6906f476b419b8d0d3afe7a8ebe17b37dc8"
14
14
  },
15
15
  "devDependencies": {
16
16
  "vitest": "3.2.4",
17
17
  "wrangler": "4.38.0",
18
- "@livestore/utils-dev": "0.0.0-snapshot-86129a4b8d413098e304959ccc507f3d6281408f"
18
+ "@livestore/utils-dev": "0.0.0-snapshot-4746c6906f476b419b8d0d3afe7a8ebe17b37dc8"
19
19
  },
20
20
  "files": [
21
21
  "dist",
package/src/cf-types.ts CHANGED
@@ -1 +1,3 @@
1
1
  export type * from '@cloudflare/workers-types'
2
+ // We can't re-export the types from `cloudflare:workers` because they rely on having loaded the `@cloudflare/workers-types`
3
+ // which should only be done in the application, not in the library.