codeowners-git 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +2 -4
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -14833,9 +14833,7 @@ var createPullRequest = async (options) => {
14833
14833
  throw new Error("GitHub CLI (gh) is not installed. Please install it to create pull requests.");
14834
14834
  }
14835
14835
  const args = ["pr", "create", "--title", title];
14836
- if (body) {
14837
- args.push("--body", body);
14838
- }
14836
+ args.push("--body", body || "");
14839
14837
  if (draft) {
14840
14838
  args.push("--draft");
14841
14839
  }
@@ -15125,7 +15123,7 @@ var multiBranch = async (options) => {
15125
15123
  }
15126
15124
  };
15127
15125
  // package.json
15128
- var version = "1.6.0";
15126
+ var version = "1.7.0";
15129
15127
 
15130
15128
  // src/commands/version.ts
15131
15129
  function getVersion() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeowners-git",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "module": "src/cli.ts",
5
5
  "type": "module",
6
6
  "private": false,