Skip to content

Commit bac4cda

Browse files
committed
v0.9.53 - Improved installation process
1 parent 002538f commit bac4cda

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

bin/cli.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,14 @@ var createSuccess = function () {
127127

128128
var npmProcess = spawn(npmCommand, ['install'], options);
129129

130-
npmProcess.stderr.on('data', function (data) {
130+
npmProcess.stdout.on('data', function (data) {
131131
process.stdout.write(data);
132132
});
133-
133+
134+
npmProcess.stderr.on('data', function (data) {
135+
process.stderr.write(data);
136+
});
137+
134138
npmProcess.on('close', function (code) {
135139
if (code) {
136140
errorMessage('Failed to install npm dependencies. Exited with code ' + code + '.');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "socketcluster",
33
"description": "SocketCluster - A Highly parallelized WebSocket server cluster to make the most of multi-core machines/instances.",
4-
"version": "0.9.53-pre.1",
4+
"version": "0.9.53",
55
"homepage": "https://github.com/topcloud/socketcluster",
66
"contributors": [
77
{

0 commit comments

Comments
 (0)