Skip to content

Commit 76147c6

Browse files
Tyler Kellenphated
authored andcommitted
Update: Improve verbose logging
1 parent c9eb2da commit 76147c6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

bin/hacker.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ var Hacker = new Liftoff({
1919
if(this.args.verbose) {
2020
console.log('CLI OPTIONS:', this.args);
2121
console.log('CWD:', this.cwd);
22-
console.log('LOCAL MODULES REQUIRED:', this.localRequires);
22+
console.log('LOCAL MODULES REQUESTED:', this.localRequires);
2323
console.log('EXTENSIONS RECOGNIZED:', this.validExtensions);
2424
console.log('SEARCHING FOR:', this.configNameRegex);
2525
console.log('FOUND CONFIG AT:', this.configPath);
2626
console.log('CONFIG BASE DIR:', this.configBase);
2727
console.log('YOUR LOCAL DEPS ARE LOCATED:', this.depMap);
28+
console.log('LOCAL PACKAGE.JSON:', this.localPackage);
29+
console.log('CLI PACKAGE.JSON', require('../package'));
2830
}
2931

3032
if(this.configPath) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"task runner"
3333
],
3434
"dependencies": {
35-
"liftoff": "~0.3.0"
35+
"liftoff": "~0.4.0"
3636
},
3737
"devDependencies": {}
3838
}

0 commit comments

Comments
 (0)