@stackables/bridge 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,9 +5,15 @@ Wire data between APIs, tools, and fields using `.bridge` files—no resolvers,
5
5
 
6
6
  ```bash
7
7
  npm install @stackables/bridge
8
-
9
8
  ```
10
9
 
10
+ > **Developer Preview**
11
+ > The Bridge v1.x is a public preview and is not recommended for production use.
12
+ > - Stability: Breaking changes to the .bridge language and TypeScript API will occur frequently.
13
+ > - Versioning: We follow strict SemVer starting from v2.0.0.
14
+ >
15
+ > Feedback: We are actively looking for use cases. Please share yours in our GitHub Discussions.
16
+
11
17
  ---
12
18
 
13
19
  ## The Idea
@@ -41,7 +47,7 @@ Access const values in bridges or tools via `with const as c`, then reference as
41
47
 
42
48
  ### 2. Extend Blocks (`extend`)
43
49
 
44
- Defines the "Where" and the "How." Takes a function (or parent tool) and configures i, giving it a new namet.
50
+ Defines the "Where" and the "How." Takes a function (or parent tool) and configures i, giving it a new name.
45
51
 
46
52
  ```hcl
47
53
  extend <source> as <name>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackables/bridge",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Declarative dataflow for GraphQL",
5
5
  "main": "./build/index.js",
6
6
  "type": "module",