@bablr/language-en-regex-vm-pattern 0.12.3 → 0.12.4

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/lib/grammar.js +1 -1
  2. package/package.json +1 -1
package/lib/grammar.js CHANGED
@@ -75,7 +75,7 @@ export const grammar = class RegexGrammar {
75
75
  yield eat(m`<__Alternatives />`);
76
76
  yield endSpan();
77
77
  yield eat(m`closeToken*: <* '/' />`);
78
- yield eat(m`flags: <Flags />`);
78
+ yield eat(m`flags$: <Flags />`);
79
79
  }
80
80
 
81
81
  *Flags() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bablr/language-en-regex-vm-pattern",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "A BABLR language for nonbacktracking JS-style regexes",
5
5
  "engines": {
6
6
  "node": ">=12.0.0"