You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invalid JS, like adding an extra : to your action code will cause aio app build to choke and output a verbose error message that a developer can use to fix their code. ✅
However, if I call a function that is not import/required or reassign a value to a const it will happily webpack it .. even though, come runtime, it will certainly crash ❌
To test, simply add this to an action and watch it happily build ...
const num = 100
num = num + 1
The text was updated successfully, but these errors were encountered:
Invalid JS, like adding an extra : to your action code will cause
aio app build
to choke and output a verbose error message that a developer can use to fix their code. ✅However, if I call a function that is not import/required or reassign a value to a const it will happily webpack it .. even though, come runtime, it will certainly crash ❌
To test, simply add this to an action and watch it happily build ...
The text was updated successfully, but these errors were encountered: