Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 7130036

Browse files
committed
Typo fix, update stuff
1 parent 87d0f38 commit 7130036

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ logs/
1212
backup/
1313
sentry*
1414
*hash
15+
*.db
16+
*firstRun*
1517

1618
# Development stuff
1719
*.sln
@@ -30,6 +32,7 @@ lib/chatBot.private.js
3032
npm-debug.log
3133
changelog.dev
3234
.vs/
35+
*.sublime*
3336

3437
# these folders contain working trees in my clone, so I don't have to check them out.
3538
gh-pages

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ changelog.dev
2929
.vs
3030
*.njsproj
3131
*.sln
32+
*.sublime*
33+
*.db
34+
*firstRun*

lib/triggers/infoTrigger.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ InfoTrigger.prototype._respond = function(toId, msg) {
3838
var message = "I have been running for" + this._nanosecondsToStr(Math.floor(curtime/1000000000), true);
3939
message += " on " + process.platform + "/" + process.arch;
4040
message += ", using " + this._bytesToSize(meminfo.heapUsed) + " of " + this._bytesToSize(meminfo.heapTotal) + " allocated memory (RSS: " + this._bytesToSize(meminfo.rss);
41-
message += "). Node.js version is "+process.version+". Bot version is "+(this.chatBot.version.string || this.chatbot.version.short)+".";
41+
message += "). Node.js version is "+process.version+". Bot version is "+(this.chatBot.version.string || this.chatBot.version.short)+".";
4242
this._sendMessageAfterDelay(toId,message);
4343
return true;
4444
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
"url": "https://github.com/Efreak/node-steam-chat-bot.git"
105105
},
106106
"dependencies": {
107+
"colors": "^1.1.2",
107108
"express": "^4.10.0",
108109
"express-winston": "^0.4.1",
109110
"lodash": "^3.10.1",

0 commit comments

Comments
 (0)