@netlify/git-utils 5.1.0 → 5.2.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/lib/exec.js +1 -1
  2. package/package.json +5 -5
package/lib/exec.js CHANGED
@@ -10,7 +10,7 @@ const mGit = function (args, cwd) {
10
10
  return stdout;
11
11
  }
12
12
  catch (error) {
13
- // The child process `error.message` includes stderr and stdout output which most of the times contains duplicate
13
+ // The child process `error.message` includes stderr and stdout output which most of the time contains duplicate
14
14
  // information. We rely on `error.shortMessage` instead.
15
15
  error.message = error.shortMessage;
16
16
  throw error;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/git-utils",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "Utility for dealing with modified, created, deleted files since a git commit",
5
5
  "type": "module",
6
6
  "exports": "./lib/main.js",
@@ -57,12 +57,12 @@
57
57
  "path-exists": "^5.0.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@types/node": "^14.18.31",
61
- "typescript": "^4.8.4",
62
- "vitest": "^0.24.1"
60
+ "@types/node": "^14.18.53",
61
+ "typescript": "^5.0.0",
62
+ "vitest": "^0.34.0"
63
63
  },
64
64
  "engines": {
65
65
  "node": "^14.16.0 || >=16.0.0"
66
66
  },
67
- "gitHead": "e22d6106d734d2b4b7b49d2a2350be21913c0cbf"
67
+ "gitHead": "c22be640555b4bfbc7b17605af936f7bebf0c212"
68
68
  }