Hi there 👋
With version 10.19.1 {% break %} stops the template execution instead of just the for loop.
Example:
{% for i in (1..5) -%}
{%- if i == 4 -%}
{% break %}
{%- else -%}
{{ i }}
{%- endif -%}
{%- endfor %}
after
Result with liquidjs:
Result with liquid: