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/LICENSE generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/README.md generated vendored Executable file → Normal file
View file

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

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/LICENSE generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/README.md generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/commonjs/index.d.ts generated vendored Executable file → Normal file
View file

View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/commonjs/index.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/commonjs/index.js.map generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/commonjs/package.json generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/esm/index.d.ts generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/esm/index.d.ts.map generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/esm/index.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/esm/index.js.map generated vendored Executable file → Normal file
View file

0
my-app/node_modules/@npmcli/git/node_modules/lru-cache/dist/esm/package.json generated vendored Executable file → Normal file
View file

13
my-app/node_modules/@npmcli/git/node_modules/lru-cache/package.json generated vendored Executable file → Normal file
View file

@ -1,7 +1,7 @@
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "10.2.0",
"version": "10.2.2",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
@ -11,8 +11,7 @@
"sideEffects": false,
"scripts": {
"build": "npm run prepare",
"prepare": "tshy",
"postprepare": "bash fixup.sh",
"prepare": "tshy && bash fixup.sh",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "tap",
@ -35,8 +34,8 @@
".": "./src/index.ts",
"./min": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.min.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
@ -105,8 +104,8 @@
},
"./min": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.min.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",

10
my-app/node_modules/@npmcli/git/package.json generated vendored Executable file → Normal file
View file

@ -1,6 +1,6 @@
{
"name": "@npmcli/git",
"version": "5.0.4",
"version": "5.0.7",
"main": "lib/index.js",
"files": [
"bin/",
@ -9,7 +9,7 @@
"description": "a util for spawning git from npm CLI contexts",
"repository": {
"type": "git",
"url": "https://github.com/npm/git.git"
"url": "git+https://github.com/npm/git.git"
},
"author": "GitHub Inc.",
"license": "ISC",
@ -31,7 +31,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.21.3",
"@npmcli/template-oss": "4.22.0",
"npm-package-arg": "^11.0.0",
"slash": "^3.0.0",
"tap": "^16.0.1"
@ -40,7 +40,7 @@
"@npmcli/promise-spawn": "^7.0.0",
"lru-cache": "^10.0.1",
"npm-pick-manifest": "^9.0.0",
"proc-log": "^3.0.0",
"proc-log": "^4.0.0",
"promise-inflight": "^1.0.1",
"promise-retry": "^2.0.1",
"semver": "^7.3.5",
@ -51,7 +51,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.21.3",
"version": "4.22.0",
"publish": true
}
}