@stackables/bridge 1.0.0 → 1.0.2
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/README.md +3 -3
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -286,6 +286,6 @@ bridgeTransform(schema, instructions, {
|
|
|
286
286
|
|
|
287
287
|
## Why The Bridge?
|
|
288
288
|
|
|
289
|
-
* **No Resolver Sprawl:** Stop writing identical `fetch` and `map` logic
|
|
290
|
-
* **Provider Agnostic:** Swap implementations (e.g., SendGrid vs Postmark) at the request level
|
|
291
|
-
* **Edge-Ready:** Small footprint; works in Node, Bun, and Cloudflare Workers
|
|
289
|
+
* **No Resolver Sprawl:** Stop writing identical `fetch` and `map` logic
|
|
290
|
+
* **Provider Agnostic:** Swap implementations (e.g., SendGrid vs Postmark) at the request level
|
|
291
|
+
* **Edge-Ready:** Small footprint; works in Node, Bun, and Cloudflare Workers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackables/bridge",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Declarative dataflow for GraphQL",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -28,14 +28,13 @@
|
|
|
28
28
|
"@tsconfig/node22": "^22.0.5",
|
|
29
29
|
"@types/node": "^25.3.0",
|
|
30
30
|
"graphql-yoga": "^5.18.0",
|
|
31
|
-
"semantic-release": "^24.2.7",
|
|
32
31
|
"tsx": "^4.21.0",
|
|
33
32
|
"typescript": "^5.9.3"
|
|
34
33
|
},
|
|
35
34
|
"dependencies": {
|
|
36
|
-
"@graphql-tools/utils": "^11
|
|
37
|
-
"graphql": "^16
|
|
38
|
-
"lru-cache": "^11
|
|
35
|
+
"@graphql-tools/utils": "^11",
|
|
36
|
+
"graphql": "^16",
|
|
37
|
+
"lru-cache": "^11"
|
|
39
38
|
},
|
|
40
39
|
"publishConfig": {
|
|
41
40
|
"access": "public"
|