Comparing version 0.7.1 to 0.7.2
{ | ||
"name": "cli-task", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"repository": "https://github.com/astoilkov/cli-task", | ||
@@ -5,0 +5,0 @@ "description": "Task runner for developers minimalists", |
@@ -34,5 +34,5 @@ #!/usr/bin/env node | ||
function isTask(obj) { | ||
return obj && typeof obj.exec == 'function' && typeof obj.add == 'function' && | ||
return obj && typeof obj.add == 'function' && | ||
typeof obj.withOptions == 'function' && Array.isArray(obj.steps); | ||
} | ||
//# sourceMappingURL=cli.js.map |
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
16193