@tabnas/abnf 0.4.0 → 0.4.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.
package/dist/abnf.d.ts CHANGED
@@ -4,4 +4,4 @@ import { abnfCompile, toRecognitionSpec, toPureSpec, toJsonic, attachActions, at
4
4
  declare const abnf: Plugin;
5
5
  export { VERSION, abnf, abnfConvert, parseAbnf, emitGrammarSpec, eliminateLeftRecursion, abnfRules, AbnfParseError, abnfCompile, toRecognitionSpec, toPureSpec, toJsonic, attachActions, attachActionSlots, markListing, AbnfCompileError, AbnfActionError, };
6
6
  export type { AbnfConvertOptions, AbnfCompileOptions, ActionsMap };
7
- declare const VERSION = "0.4.0";
7
+ declare const VERSION = "0.4.1";
package/dist/abnf.js CHANGED
@@ -36,6 +36,6 @@ exports.abnf = abnf;
36
36
  // VERSION is this package's version. It MUST equal package.json "version":
37
37
  // the release orchestrator rewrites both, and the version test fails the
38
38
  // build if they drift. Mirrors `const VERSION` in go/abnf.go.
39
- const VERSION = '0.4.0';
39
+ const VERSION = '0.4.1';
40
40
  exports.VERSION = VERSION;
41
41
  //# sourceMappingURL=abnf.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabnas/abnf",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "main": "dist/abnf.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/abnf.d.ts",
@@ -20,6 +20,7 @@
20
20
  "directory": "ts"
21
21
  },
22
22
  "scripts": {
23
+ "pretest": "sh ../test/fetch-abnf-corpus.sh",
23
24
  "test": "node --enable-source-maps --test test/**/*.test.js",
24
25
  "watch": "tsc --build src -w",
25
26
  "build": "tsc --build src",