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
When I start a debug session and I get to the prompt.get() the function inside the get is never hit. If I start the same js file directly with node it works as expected.
I do:
var prompt = require('prompt');
prompt.start();
prompt.get({
name: 'variableA',
description: "Set variableA"
}, function (err, result) {
// Not hit
});
Am I doing something wrong here? Here is my info:
"dependencies": {
"prompt": "^1.0.0"
}
$ node --version
v10.13.0
VS Code version: Version 1.29.1 (1.29.1)
The text was updated successfully, but these errors were encountered:
When I start a debug session and I get to the prompt.get() the function inside the get is never hit. If I start the same js file directly with node it works as expected.
I do:
Am I doing something wrong here? Here is my info:
VS Code version: Version 1.29.1 (1.29.1)
The text was updated successfully, but these errors were encountered: