@livestore/common-cf 0.0.0-snapshot-f6c21c8458770c13238d5cb489cf24cc5e20467c → 0.0.0-snapshot-f8fd8011ebdf4681c36af2ada25075460035eab0

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-f6c21c8458770c13238d5cb489cf24cc5e20467c",
3
+ "version": "0.0.0-snapshot-f8fd8011ebdf4681c36af2ada25075460035eab0",
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-f6c21c8458770c13238d5cb489cf24cc5e20467c",
13
- "@livestore/utils": "0.0.0-snapshot-f6c21c8458770c13238d5cb489cf24cc5e20467c"
12
+ "@livestore/common": "0.0.0-snapshot-f8fd8011ebdf4681c36af2ada25075460035eab0",
13
+ "@livestore/utils": "0.0.0-snapshot-f8fd8011ebdf4681c36af2ada25075460035eab0"
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-f6c21c8458770c13238d5cb489cf24cc5e20467c"
18
+ "@livestore/utils-dev": "0.0.0-snapshot-f8fd8011ebdf4681c36af2ada25075460035eab0"
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.