Skip to content

Commit

Permalink
deps: @npmcli/git@5.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Apr 9, 2024
1 parent c929ed1 commit a0f5048
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions node_modules/@npmcli/git/lib/is.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
// not an airtight indicator, but a good gut-check to even bother trying
const { promisify } = require('util')
const fs = require('fs')
const stat = promisify(fs.stat)
const { stat } = require('fs/promises')
module.exports = ({ cwd = process.cwd() } = {}) =>
stat(cwd + '/.git').then(() => true, () => false)
2 changes: 1 addition & 1 deletion node_modules/@npmcli/git/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@npmcli/git",
"version": "5.0.4",
"version": "5.0.5",
"main": "lib/index.js",
"files": [
"bin/",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"devDependencies": {
"@npmcli/docs": "^1.0.0",
"@npmcli/eslint-config": "^4.0.2",
"@npmcli/git": "^5.0.4",
"@npmcli/git": "^5.0.5",
"@npmcli/mock-globals": "^1.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/template-oss": "4.21.3",
Expand Down Expand Up @@ -1762,9 +1762,9 @@
}
},
"node_modules/@npmcli/git": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.4.tgz",
"integrity": "sha512-nr6/WezNzuYUppzXRaYu/W4aT5rLxdXqEFupbh6e/ovlYFQ8hpu1UUPV3Ir/YTl+74iXl2ZOMlGzudh9ZPUchQ==",
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.5.tgz",
"integrity": "sha512-x8hXItC8OFOwdgERzRIxg0ic1lQqW6kSZFFQtZTCNYOeGb9UqzVcod02TYljI9UBl4RtfcyQ0A7ygmcGFvEqWw==",
"inBundle": true,
"dependencies": {
"@npmcli/promise-spawn": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"devDependencies": {
"@npmcli/docs": "^1.0.0",
"@npmcli/eslint-config": "^4.0.2",
"@npmcli/git": "^5.0.4",
"@npmcli/git": "^5.0.5",
"@npmcli/mock-globals": "^1.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/template-oss": "4.21.3",
Expand Down

0 comments on commit a0f5048

Please sign in to comment.