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
The interactive option for initializing a JavaScript project (t2 init -i) throws an error:
➜ t2-demo t2 init -i
INFO Initializing new Tessel project for JavaScript...
INFO Created package.json.
ERR! [TypeError: Cannot read property 'trim' of undefined]
The error is being thrown by this line. Adding another check for a falsy value of d allows you to interactively create a package.json but the spinner awkwardly blocks the text being typed.
The fix for this bug would be to fix that check on d and fix the spinner blocking stdin text.
The text was updated successfully, but these errors were encountered:
The interactive option for initializing a JavaScript project (
t2 init -i
) throws an error:The error is being thrown by this line. Adding another check for a
falsy
value ofd
allows you to interactively create a package.json but the spinner awkwardly blocks the text being typed.The fix for this bug would be to fix that check on
d
and fix the spinner blocking stdin text.The text was updated successfully, but these errors were encountered: