We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359a825 commit f6f9a56Copy full SHA for f6f9a56
.gitignore
@@ -1,2 +1,3 @@
1
package-lock.json
2
node_modules
3
+.DS_Store
src/config.js
@@ -3,6 +3,7 @@ var path = require('path');
class Config {
4
constructor(config) {
5
this.version = require(path.dirname(require.main.filename)+'/../package.json').version;
6
+ process.title = "Sky Puppy v"+this.version;
7
try {
8
this.path = path.resolve(process.env.SKY_PUPPY_CONFIG_PATH || './') + '/sky-puppy-config.json';
9
this.settings = JSON.parse(fs.readFileSync(this.path));
0 commit comments