Skip to content

Commit 35371c8

Browse files
committed
deps: cacache@18.0.1
1 parent ae2d982 commit 35371c8

File tree

11 files changed

+74
-765
lines changed

11 files changed

+74
-765
lines changed

node_modules/.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,6 @@
146146
!/make-fetch-happen
147147
!/minimatch
148148
!/minipass-collect
149-
!/minipass-collect/node_modules/
150-
/minipass-collect/node_modules/*
151-
!/minipass-collect/node_modules/minipass
152149
!/minipass-fetch
153150
!/minipass-flush
154151
!/minipass-flush/node_modules/

node_modules/cacache/lib/content/write.js

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ class CacacheWriteStream extends Flush {
6767
this.cache,
6868
this.opts
6969
)
70+
this.handleContentP.catch(error => this.emit('error', error))
7071
}
7172
return this.inputStream.write(chunk, encoding, cb)
7273
}

node_modules/cacache/package.json

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cacache",
3-
"version": "18.0.0",
3+
"version": "18.0.1",
44
"cache-version": {
55
"content": "2",
66
"index": "5"
@@ -50,7 +50,7 @@
5050
"glob": "^10.2.2",
5151
"lru-cache": "^10.0.1",
5252
"minipass": "^7.0.3",
53-
"minipass-collect": "^1.0.2",
53+
"minipass-collect": "^2.0.1",
5454
"minipass-flush": "^1.0.5",
5555
"minipass-pipeline": "^1.2.4",
5656
"p-map": "^4.0.0",
@@ -60,7 +60,7 @@
6060
},
6161
"devDependencies": {
6262
"@npmcli/eslint-config": "^4.0.0",
63-
"@npmcli/template-oss": "4.18.0",
63+
"@npmcli/template-oss": "4.19.0",
6464
"tap": "^16.0.0"
6565
},
6666
"engines": {
@@ -69,14 +69,8 @@
6969
"templateOSS": {
7070
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
7171
"windowsCI": false,
72-
"version": "4.18.0",
73-
"publish": "true",
74-
"ciVersions": [
75-
"16.14.0",
76-
"16.x",
77-
"18.0.0",
78-
"18.x"
79-
]
72+
"version": "4.19.0",
73+
"publish": "true"
8074
},
8175
"author": "GitHub Inc.",
8276
"tap": {

node_modules/minipass-collect/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The ISC License
22

3-
Copyright (c) Isaac Z. Schlueter and Contributors
3+
Copyright (c) 2019-2023 Isaac Z. Schlueter and Contributors
44

55
Permission to use, copy, modify, and/or distribute this software for any
66
purpose with or without fee is hereby granted, provided that the above

node_modules/minipass-collect/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Minipass = require('minipass')
1+
const { Minipass } = require('minipass')
22
const _data = Symbol('_data')
33
const _length = Symbol('_length')
44
class Collect extends Minipass {

node_modules/minipass-collect/node_modules/minipass/LICENSE

-15
This file was deleted.

0 commit comments

Comments
 (0)