Skip to content

Releases: 0E9B061F/lexdoc

Lexdoc v2.0.1

08 Oct 05:28
Compare
Choose a tag to compare

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

30 May 00:50
Compare
Choose a tag to compare

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

21 May 09:26
Compare
Choose a tag to compare

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

21 May 04:18
Compare
Choose a tag to compare

About

Initial release of Lexdoc, a simplified token definition and lexer creation library for use with Chevrotain.

See the README for additional information.