Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,5 @@ | ||
1.1.1 / 2017-01-28 | ||
------------------ | ||
Fixed undefined error log on send message. See: https://github.com/jprichardson/reload/pull/59 | ||
1.1.0 / 2016-11-12 | ||
@@ -2,0 +6,0 @@ ------------------ |
@@ -42,3 +42,5 @@ var path = require('path') | ||
conn.send(command, function (error) { | ||
console.error(error) | ||
if (error) { | ||
console.error(error) | ||
} | ||
}) | ||
@@ -45,0 +47,0 @@ } else { |
{ | ||
"name": "reload", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Node.js module to refresh and reload your code in your browser when your code changes. No browser plugins required.", | ||
@@ -5,0 +5,0 @@ "repository": { |
22132
210