Comparing version 0.1.47 to 0.1.48
@@ -658,3 +658,7 @@ #!/usr/bin/env node | ||
var ideServer = undefined; | ||
process.stdin.setRawMode(true); | ||
// Set raw mode to allow Ctrl-C/etc, but Git Bash for Windows doesn't have support (#161) | ||
if (process.stdin.setRawMode) | ||
process.stdin.setRawMode(true); | ||
else | ||
log("No process.stdin.setRawMode() - Ctrl-C/etc won't function correctly"); | ||
Espruino.Core.Serial.startListening(function(data) { | ||
@@ -661,0 +665,0 @@ data = new Uint8Array(data); |
{ | ||
"name": "espruino", | ||
"version": "0.1.47", | ||
"version": "0.1.48", | ||
"description": "Command Line Interface and library for Communications with Espruino JavaScript Microcontrollers", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1473064
33245