parser-lr 0.2.1 → 0.2.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 CHANGED
@@ -103,11 +103,3 @@ const ast = context.parse(context.lex(source));
103
103
  ## Example grammars
104
104
 
105
105
  Sample `.grammar` files ship in [`grammars/`](grammars/) (`calc.grammar`, `lisp.grammar`, `6502.grammar`, and the meta-grammar `grammar.grammar`). Use them as templates when writing your own language.
106
-
107
- ## Developing this package
108
-
109
- Contributors who change the meta-grammar should regenerate the bootstrapped table:
110
-
111
- ```bash
112
- npm run bootstrap
113
- ```
package/bin/parser-lr.js CHANGED
@@ -3781,7 +3781,7 @@ const {
3781
3781
  Help,
3782
3782
  } = commander;
3783
3783
 
3784
- var version$1 = "0.2.1";
3784
+ var version$1 = "0.2.2";
3785
3785
  var packageDefinition = {
3786
3786
  version: version$1};
3787
3787
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "parser-lr",
3
3
  "author": "Adam R Moss <adamrmoss@gmail.com>",
4
- "version": "0.2.1",
4
+ "version": "0.2.2",
5
5
  "description": "Shift-reduce parser library for EBNF grammars",
6
6
  "license": "MIT",
7
7
  "type": "module",