Comparing version 1.0.2 to 1.0.3
@@ -37,5 +37,5 @@ 'use strict'; | ||
dots.list(); | ||
dots.list(args[1]); | ||
break; | ||
} | ||
}); |
@@ -50,8 +50,8 @@ 'use strict'; | ||
function listDots() { | ||
function listDots (dir) { | ||
fs.readdir(utils.dotsHome, function (err, dots) { | ||
fs.readdir(dir ? homeDot(dir) : utils.dotsHome, function (err, dots) { | ||
utils.handleError(err); | ||
console.log(dots.reduce(function (agg, dot) { | ||
console.log('\x1b[32m%s\x1b[0m', dots.reduce(function (agg, dot) { | ||
@@ -58,0 +58,0 @@ return agg + '\n' + dot; |
{ | ||
"name": "gimme-dots", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Gimme my dotfiles! Store your common dotfiles and request them into your new project.", | ||
@@ -5,0 +5,0 @@ "bin": { |
@@ -33,1 +33,6 @@ # Gimme my dotfiles! | ||
``` | ||
List dots in bundle: | ||
``` | ||
dost list name | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57242
38