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/cacache/lib/content/path.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/cacache/lib/content/read.js generated vendored Executable file → Normal file
View file

@ -71,7 +71,7 @@ function readStream (cache, integrity, opts = {}) {
module.exports.copy = copy
function copy (cache, integrity, dest) {
return withContentSri(cache, integrity, (cpath, sri) => {
return withContentSri(cache, integrity, (cpath) => {
return fs.copyFile(cpath, dest)
})
}

0
my-app/node_modules/cacache/lib/content/rm.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/cacache/lib/content/write.js generated vendored Executable file → Normal file
View file

@ -160,7 +160,7 @@ async function makeTmp (cache, opts) {
}
}
async function moveToDestination (tmp, cache, sri, opts) {
async function moveToDestination (tmp, cache, sri) {
const destination = contentPath(cache, sri)
const destDir = path.dirname(destination)
if (moveOperations.has(destination)) {