effect-grammar 0.0.1 → 0.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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -84,6 +84,9 @@ Effect.runSync(parse("192.168.1.1", ip))
84
84
  // { _tag: "Success", value: [192, 168, 1, 1] }
85
85
  ```
86
86
 
87
+ Parsing is strict by default, so `parse` rejects trailing input. Use
88
+ `parsePrefix` when the input may contain content after the parsed value.
89
+
87
90
  ## Releasing
88
91
 
89
92
  Add a changeset for a user-facing change:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-grammar",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Effect Schema, but for text formats: one grammar yields a parser, printer, rendered form, and Schema",
5
5
  "keywords": [
6
6
  "bidirectional",