From 721af0be15afbe9786bd7134f25c506f1c86edde Mon Sep 17 00:00:00 2001 From: Alexandre Massonneau Date: Sun, 31 Jan 2016 22:24:41 -0500 Subject: [PATCH] Remove debug messages --- .gitignore | 1 + package.json | 2 +- src/PathPrompt.js | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 42b30bf..8268c96 100755 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .idea/ node_modules/ +debug.txt npm-debug.log .DS_Store docs/ diff --git a/package.json b/package.json index 147653f..fb4581a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "An Inquirer extension to support path questions", "author": "Alexandre Massonneau (http://github.com/aam229)", "license": "MIT", - "version": "1.0.0-alpha1", + "version": "1.0.0-alpha2", "repository": { "type": "git", "url": "git+https://github.com/aam229/inquirer-path.git" diff --git a/src/PathPrompt.js b/src/PathPrompt.js index e46d257..9320016 100644 --- a/src/PathPrompt.js +++ b/src/PathPrompt.js @@ -152,7 +152,6 @@ export default class PathPrompt extends BasePrompt { this.finished = true; // Put the listeners back on to SIGINT this.originalSIGINTListeners.forEach((listener) => { - console.error(this.rl); this.rl.addListener('SIGINT', listener); });