-
Notifications
You must be signed in to change notification settings - Fork 210
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
switch to expr-eval for dynamic module #1729
Conversation
It's breaking, I think we should do this in 3.6.1. |
Ok no problem, sounds good! Should be pretty simple to fix then. Thanks!!
…On Sat, Oct 17, 2020, 3:25 PM Harsh Khandeparkar ***@***.***> wrote:
It's breaking, I think we should do this in 3.6.1.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1729 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAF6J77PAGTFKEWTHOC4QTSLHVRVANCNFSM4SURIZUA>
.
|
I'm seeing some |
npm install must have bumped some of the deeper dependencies in the lockfile. This is the same reason that is causing the audits to fail... |
aha! also:
|
Now the only error seems to be:
which is an ES6 issue. Sorry, that's not an issue here, that occurs in main branch too and i made an issue: #1810 OK, so what else in that test run?
Let's see if it passed earlier tests. Maybe our new |
This looks like it could be a similar issue as @blurry-x-face faced using image-sequencer/test/core/templates/options-test.js Lines 37 to 41 in 0cbefa3
Although perhaps it's that the |
OK, got it - this implementation didn't work, the generator function outputs: > generator('B+B')+''
'function () {\n return f.apply(expr, arguments);\n }' |
OK it was struggling with undefineds in |
Nice! @harshkhandeparkar got this to work!!! |
Wow! 🎉 |
Fixes #1728 by replacing
eval()
withexpr-eval
for mathematical expressions