Releases: eploko/pegjs-loader
Releases · eploko/pegjs-loader
v0.5.8
Fix CVE-2019-10744
This release merely upgrades the lodash
dependency to be 4.17.12 or greater.
Fixes WS-2018-0592
- Update eslint to ~> 4.18.2 in dev dependencies.
- Fix WS-2018-0592.
Webpack 2 compatibility fix
This fixes the peer dependencies so that it's compatible with Webpack 2.
PEG.js 0.10.0 support
Updated to work with PEG.js 0.10.0
Support for multiple start rules and the trace option
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
- Iftrue
, 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
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
This release fixes a typo which prevented the loader from working.
PEG.js 0.9.0
This release makes the loader depend on the 0.9.0 version of PEG.js
ES Next and the `cache` option
This release add the support for ES Next and the PEG.js's cache
option.