codeowners-git 2.0.1 → 2.0.2

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
@@ -16219,10 +16219,8 @@ var checkout = async (name) => {
16219
16219
  };
16220
16220
  var commitChanges = async (files, { message, noVerify = false }) => {
16221
16221
  try {
16222
- log.info("Adding files to commit...");
16223
- await git.add(files);
16224
16222
  log.info(`Running commit with message: "${message}"`);
16225
- await git.commit(message, [], {
16223
+ await git.commit(message, files, {
16226
16224
  ...noVerify ? { "--no-verify": null } : {}
16227
16225
  });
16228
16226
  log.info("Commit finished successfully.");
@@ -18779,7 +18777,7 @@ Next steps:`);
18779
18777
  }
18780
18778
  };
18781
18779
  // package.json
18782
- var version = "2.0.1";
18780
+ var version = "2.0.2";
18783
18781
 
18784
18782
  // src/commands/version.ts
18785
18783
  function getVersion() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeowners-git",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "module": "src/cli.ts",
5
5
  "type": "module",
6
6
  "private": false,