Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 2 changed files Side-by-side Diff

... ... @@ -14,6 +14,7 @@ let config;
14 14  
15 15 for (let candindate in candindates) {
16 16 if (fs.existsSync(candindate)) {
  17 + console.log(candindate + ' FOUND');
17 18 try {
18 19 config = require(candindate);
19 20 config.this_config_filename = candindate;
... ... @@ -22,6 +23,7 @@ for (let candindate in candindates) {
22 23  
23 24 break;
24 25 }
  26 + console.log(candindate + ' NOT FOUND');
25 27 }
26 28  
27 29 module.exports = config;
1 1 {
2 2 "name": "komodo-sdk",
3   - "version": "1.23.2",
  3 + "version": "1.23.3",
4 4 "description": "SDK for Komodo",
5 5 "main": "index.js",
6 6 "scripts": {