Comparing version 1.0.32 to 1.0.33
@@ -33,3 +33,10 @@ var B = require('br4nch'); | ||
name: 'repo', | ||
message: 'Name?' | ||
message: 'Name?', | ||
validate: function (value) { | ||
value = value.trim(); | ||
if (value.length > 0) { | ||
return true; | ||
} | ||
return 'Please enter a name'; | ||
} | ||
} | ||
@@ -36,0 +43,0 @@ ]; |
{ | ||
"name": "cr34t3", | ||
"version": "1.0.32", | ||
"version": "1.0.33", | ||
"description": "Create github repository in programmatically.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
3689
57