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
If the uncaughtException handler receives a 'module not found' error, and it's for an node_modules package (i.e. string does not start with ../ or ./ or /)... the script should still exit with code 1, but then esbox should offer to install the missing dep.
user can type iEnter to do npm install NAME
or sEnter for npm install --save NAME
or dEnter for npm install --save-dev NAME
and if there's no package.json, and the user chooses to save or save-dev, esbox should first create a package.json file containing {} before running the command.
The text was updated successfully, but these errors were encountered:
If the uncaughtException handler receives a 'module not found' error, and it's for an node_modules package (i.e. string does not start with
../
or./
or/
)... the script should still exit with code 1, but then esbox should offer to install the missing dep.npm install NAME
npm install --save NAME
npm install --save-dev NAME
and if there's no package.json, and the user chooses to save or save-dev, esbox should first create a package.json file containing
{}
before running the command.The text was updated successfully, but these errors were encountered: