Releases: 0E9B061F/lexdoc
Lexdoc v2.0.1
About
Lexdoc is a simplified token definition and lexer creation library for use with Chevrotain.
See the README for additional information.
Changes
Updated Lexdoc for Chevrotain 10.
Lexdoc v2.0.0
About
Lexdoc is a simplified token definition and lexer creation library for use with Chevrotain.
See the README for additional information.
Changes
Made Chevrotain a peer dependency. This is backwards-incompatible and changes the way Lexdoc is require
'd. Code using Lexdoc should be changed like so:
Pre 2.0.0:
const LD = require('lexdoc')
Becomes:
const chevrotain = require('chevrotain')
const LD = require('lexdoc')(chevrotain)
Lexdoc v1.0.1
About
Lexdoc is a simplified token definition and lexer creation library for use with Chevrotain.
See the README for additional information.
Changes
- Minor documentation changes
- Update to Chevrotain v3.3.0
Lexdoc v1.0.0
About
Initial release of Lexdoc, a simplified token definition and lexer creation library for use with Chevrotain.
See the README for additional information.