-
-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
syntax.split is not a function #2571
Comments
cc @harttle I was able to narrow this down to an extra token being returned here (which resulted in extra internal-to-liquid arguments): eleventy/src/Plugins/Edge/LiquidEdge.js Lines 13 to 19 in e9ca971
|
Specifically this was being returned as a token when I don’t think it should be?
|
2.0.0-canary.16 has shipped with |
No, it shouldn't. I can't see how it can be. Do you have a eleventy/src/Plugins/Edge/LiquidEdge.js Lines 11 to 19 in e9ca971
|
I got this fixed up! I wasn’t evaluating my tokens correctly in the render function. |
Shipping with 2.0.0-canary.19 |
Build-time error (not runtime):
Pinned this down to a regression in
liquidjs
9.42.0
, canary-16 will be pinned to 9.41.0.To workaround this locally, just add
"liquidjs": "9.41.0",
to your package.json under dependencies.The text was updated successfully, but these errors were encountered: