Updated the project.

This commit is contained in:
Batuhan Berk Başoğlu 2024-06-03 15:44:25 -04:00
parent 5dfe9f128d
commit 7919556077
1550 changed files with 17063 additions and 40183 deletions

0
my-app/node_modules/@npmcli/git/lib/clone.js generated vendored Executable file → Normal file
View file

6
my-app/node_modules/@npmcli/git/lib/errors.js generated vendored Executable file → Normal file
View file

@ -8,7 +8,7 @@ class GitError extends Error {
}
class GitConnectionError extends GitError {
constructor (message) {
constructor () {
super('A git connection error occurred')
}
@ -18,13 +18,13 @@ class GitConnectionError extends GitError {
}
class GitPathspecError extends GitError {
constructor (message) {
constructor () {
super('The git reference could not be found')
}
}
class GitUnknownError extends GitError {
constructor (message) {
constructor () {
super('An unknown git error occurred')
}
}

0
my-app/node_modules/@npmcli/git/lib/find.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/index.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/is-clean.js generated vendored Executable file → Normal file
View file

4
my-app/node_modules/@npmcli/git/lib/is.js generated vendored Executable file → Normal file
View file

@ -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)

0
my-app/node_modules/@npmcli/git/lib/lines-to-revs.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/make-error.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/opts.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/revs.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/@npmcli/git/lib/spawn.js generated vendored Executable file → Normal file
View file

@ -1,6 +1,6 @@
const spawn = require('@npmcli/promise-spawn')
const promiseRetry = require('promise-retry')
const log = require('proc-log')
const { log } = require('proc-log')
const makeError = require('./make-error.js')
const makeOpts = require('./opts.js')

0
my-app/node_modules/@npmcli/git/lib/utils.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/lib/which.js generated vendored Executable file → Normal file
View file