Skip to content

Releases: eploko/pegjs-loader

v0.5.8

07 Aug 14:28
Compare
Choose a tag to compare

Update dependencies.

Fix CVE-2019-10744

24 Feb 23:01
Compare
Choose a tag to compare

This release merely upgrades the lodash dependency to be 4.17.12 or greater.

Fixes WS-2018-0592

09 Jul 02:33
Compare
Choose a tag to compare
  • Update eslint to ~> 4.18.2 in dev dependencies.
  • Fix WS-2018-0592.

Webpack 2 compatibility fix

03 Mar 10:52
Compare
Choose a tag to compare

This fixes the peer dependencies so that it's compatible with Webpack 2.

PEG.js 0.10.0 support

07 Oct 16:00
Compare
Choose a tag to compare

Updated to work with PEG.js 0.10.0

Support for multiple start rules and the trace option

10 Feb 07:25
Compare
Choose a tag to compare

You can now pass two more options to PEG.js as query parameters. They are:

  • allowedStartRules - The rules the built parser will be allowed to start
    parsing from (default: the first rule in the grammar).
  • trace - If true, the tracing support in the built parser is enabled
    (default: false).

Please check out the README for a usage example.

Support for the optimize option

22 Jan 13:46
Compare
Choose a tag to compare

You can now specify the optimize option on the loader. Either specify speed or size. speed is default.

Fixed: TypeError: Cannot read property 'cacheable' of undefined

04 Nov 09:01
Compare
Choose a tag to compare

This release fixes a typo which prevented the loader from working.

PEG.js 0.9.0

04 Nov 08:54
Compare
Choose a tag to compare

This release makes the loader depend on the 0.9.0 version of PEG.js

ES Next and the `cache` option

04 Nov 08:37
Compare
Choose a tag to compare

This release add the support for ES Next and the PEG.js's cache option.