@riotjs/parser
Advanced tools
Comparing version 4.0.0 to 4.0.1
# Changes for riot-parser | ||
### v4.0.1 | ||
- Fix the creation of the `parts` array in nodes containing expressions | ||
### v4.0.0 | ||
@@ -4,0 +7,0 @@ - Stable release |
@@ -1552,3 +1552,3 @@ 'use strict'; | ||
if ((pos += start) < node.end) { | ||
if (pos < node.end) { | ||
parts.push(this.sanitise(node, source.slice(pos), pack)); | ||
@@ -1555,0 +1555,0 @@ } |
{ | ||
"name": "@riotjs/parser", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "The parser for Riot tags", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
@@ -186,3 +186,3 @@ /*--------------------------------------------------------------------- | ||
if ((pos += start) < node.end) { | ||
if (pos < node.end) { | ||
parts.push(this.sanitise(node, source.slice(pos), pack)) | ||
@@ -189,0 +189,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97989