delete-github-branches
Advanced tools
Comparing version 1.2.6 to 1.2.7
@@ -76,6 +76,6 @@ "use strict"; | ||
stdout: `${deletedBranchNames.join(",")} is matched by delete-github-branches's patterns: | ||
{ | ||
includesBranchPatterns: ${includesBranchPatterns.join(",")} | ||
excludesBranchPatterns: ${excludesBranchPatterns.join(",")} | ||
}` | ||
${JSON.stringify({ | ||
includesBranchPatterns: includesBranchPatterns, | ||
excludesBranchPatterns: excludesBranchPatterns | ||
}, null, 4)}` | ||
}; | ||
@@ -82,0 +82,0 @@ } |
{ | ||
"name": "delete-github-branches", | ||
"version": "1.2.6", | ||
"version": "1.2.7", | ||
"description": "Delete GitHub Branches that match patterns.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -72,6 +72,10 @@ import meow from "meow"; | ||
stdout: `${deletedBranchNames.join(",")} is matched by delete-github-branches's patterns: | ||
{ | ||
includesBranchPatterns: ${includesBranchPatterns.join(",")} | ||
excludesBranchPatterns: ${excludesBranchPatterns.join(",")} | ||
}` | ||
${JSON.stringify( | ||
{ | ||
includesBranchPatterns: includesBranchPatterns, | ||
excludesBranchPatterns: excludesBranchPatterns | ||
}, | ||
null, | ||
4 | ||
)}` | ||
}; | ||
@@ -78,0 +82,0 @@ } else { |
Sorry, the diff of this file is not supported yet
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
63943
1212