Comparing version 1.11.1 to 1.11.2
@@ -118,5 +118,5 @@ #!/usr/bin/env node | ||
if (row.value.archive && !argv.archive) return; | ||
if (!type) rows.push(row); | ||
if (row.value.type === type) rows.push(row) | ||
if (typeIsRegExp && testRegExp(type, row.value.type)) rows.push(row) | ||
if (!type) return rows.push(row); | ||
if (row.value.type === type) return rows.push(row) | ||
if (typeIsRegExp && testRegExp(type, row.value.type)) return rows.push(row) | ||
}; | ||
@@ -123,0 +123,0 @@ s.pipe(through(write, function () { |
{ | ||
"name": "clocker", | ||
"version": "1.11.1", | ||
"version": "1.11.2", | ||
"description": "track project hours", | ||
@@ -5,0 +5,0 @@ "bin": { |
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
20826