Skip to content

Commit c02ce5c

Browse files
committed
deps: @npmcli/package-json@7.0.2
1 parent 9c0cefa commit c02ce5c

File tree

10 files changed

+212
-208
lines changed

10 files changed

+212
-208
lines changed

node_modules/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
!/@npmcli/package-json
3333
!/@npmcli/package-json/node_modules/
3434
/@npmcli/package-json/node_modules/*
35-
!/@npmcli/package-json/node_modules/json-parse-even-better-errors
35+
!/@npmcli/package-json/node_modules/proc-log
3636
!/@npmcli/promise-spawn
3737
!/@npmcli/query
3838
!/@npmcli/redact

node_modules/@npmcli/package-json/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class PackageJson {
225225
this.#manifest = step({ content, originalContent: this.content })
226226
}
227227

228-
// unknown properties will just be overwitten
228+
// unknown properties will just be overwritten
229229
for (const [key, value] of Object.entries(content)) {
230230
if (!knownKeys.has(key)) {
231231
this.content[key] = value

node_modules/@npmcli/package-json/node_modules/json-parse-even-better-errors/LICENSE.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

node_modules/@npmcli/package-json/node_modules/json-parse-even-better-errors/lib/index.js

Lines changed: 0 additions & 137 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) GitHub, Inc.
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
const META = Symbol('proc-log.meta')
2+
module.exports = {
3+
META: META,
4+
output: {
5+
LEVELS: [
6+
'standard',
7+
'error',
8+
'buffer',
9+
'flush',
10+
],
11+
KEYS: {
12+
standard: 'standard',
13+
error: 'error',
14+
buffer: 'buffer',
15+
flush: 'flush',
16+
},
17+
standard: function (...args) {
18+
return process.emit('output', 'standard', ...args)
19+
},
20+
error: function (...args) {
21+
return process.emit('output', 'error', ...args)
22+
},
23+
buffer: function (...args) {
24+
return process.emit('output', 'buffer', ...args)
25+
},
26+
flush: function (...args) {
27+
return process.emit('output', 'flush', ...args)
28+
},
29+
},
30+
log: {
31+
LEVELS: [
32+
'notice',
33+
'error',
34+
'warn',
35+
'info',
36+
'verbose',
37+
'http',
38+
'silly',
39+
'timing',
40+
'pause',
41+
'resume',
42+
],
43+
KEYS: {
44+
notice: 'notice',
45+
error: 'error',
46+
warn: 'warn',
47+
info: 'info',
48+
verbose: 'verbose',
49+
http: 'http',
50+
silly: 'silly',
51+
timing: 'timing',
52+
pause: 'pause',
53+
resume: 'resume',
54+
},
55+
error: function (...args) {
56+
return process.emit('log', 'error', ...args)
57+
},
58+
notice: function (...args) {
59+
return process.emit('log', 'notice', ...args)
60+
},
61+
warn: function (...args) {
62+
return process.emit('log', 'warn', ...args)
63+
},
64+
info: function (...args) {
65+
return process.emit('log', 'info', ...args)
66+
},
67+
verbose: function (...args) {
68+
return process.emit('log', 'verbose', ...args)
69+
},
70+
http: function (...args) {
71+
return process.emit('log', 'http', ...args)
72+
},
73+
silly: function (...args) {
74+
return process.emit('log', 'silly', ...args)
75+
},
76+
timing: function (...args) {
77+
return process.emit('log', 'timing', ...args)
78+
},
79+
pause: function () {
80+
return process.emit('log', 'pause')
81+
},
82+
resume: function () {
83+
return process.emit('log', 'resume')
84+
},
85+
},
86+
time: {
87+
LEVELS: [
88+
'start',
89+
'end',
90+
],
91+
KEYS: {
92+
start: 'start',
93+
end: 'end',
94+
},
95+
start: function (name, fn) {
96+
process.emit('time', 'start', name)
97+
function end () {
98+
return process.emit('time', 'end', name)
99+
}
100+
if (typeof fn === 'function') {
101+
const res = fn()
102+
if (res && res.finally) {
103+
return res.finally(end)
104+
}
105+
end()
106+
return res
107+
}
108+
return end
109+
},
110+
end: function (name) {
111+
return process.emit('time', 'end', name)
112+
},
113+
},
114+
input: {
115+
LEVELS: [
116+
'start',
117+
'end',
118+
'read',
119+
],
120+
KEYS: {
121+
start: 'start',
122+
end: 'end',
123+
read: 'read',
124+
},
125+
start: function (fn) {
126+
process.emit('input', 'start')
127+
function end () {
128+
return process.emit('input', 'end')
129+
}
130+
if (typeof fn === 'function') {
131+
const res = fn()
132+
if (res && res.finally) {
133+
return res.finally(end)
134+
}
135+
end()
136+
return res
137+
}
138+
return end
139+
},
140+
end: function () {
141+
return process.emit('input', 'end')
142+
},
143+
read: function (...args) {
144+
let resolve, reject
145+
const promise = new Promise((_resolve, _reject) => {
146+
resolve = _resolve
147+
reject = _reject
148+
})
149+
process.emit('input', 'read', resolve, reject, ...args)
150+
return promise
151+
},
152+
},
153+
}

0 commit comments

Comments
 (0)