Skip to content

Commit 1bb9a7d

Browse files
committed
deps: npm-profile@12.0.1
1 parent de619a4 commit 1bb9a7d

File tree

7 files changed

+237
-8
lines changed

7 files changed

+237
-8
lines changed

node_modules/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,9 @@
175175
!/npm-pick-manifest/node_modules/npm-install-checks
176176
!/npm-pick-manifest/node_modules/npm-normalize-package-bin
177177
!/npm-profile
178+
!/npm-profile/node_modules/
179+
/npm-profile/node_modules/*
180+
!/npm-profile/node_modules/proc-log
178181
!/npm-registry-fetch
179182
!/npm-user-validate
180183
!/p-map
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+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "proc-log",
3+
"version": "6.0.0",
4+
"files": [
5+
"bin/",
6+
"lib/"
7+
],
8+
"main": "lib/index.js",
9+
"description": "just emit 'log' events on the process object",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/npm/proc-log.git"
13+
},
14+
"author": "GitHub Inc.",
15+
"license": "ISC",
16+
"scripts": {
17+
"test": "tap",
18+
"snap": "tap",
19+
"posttest": "npm run lint",
20+
"postsnap": "eslint index.js test/*.js --fix",
21+
"lint": "npm run eslint",
22+
"postlint": "template-oss-check",
23+
"lintfix": "npm run eslint -- --fix",
24+
"template-oss-apply": "template-oss-apply --force",
25+
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
26+
},
27+
"devDependencies": {
28+
"@npmcli/eslint-config": "^5.0.0",
29+
"@npmcli/template-oss": "4.27.1",
30+
"tap": "^16.0.1"
31+
},
32+
"engines": {
33+
"node": "^20.17.0 || >=22.9.0"
34+
},
35+
"templateOSS": {
36+
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
37+
"version": "4.27.1",
38+
"publish": true
39+
},
40+
"tap": {
41+
"nyc-arg": [
42+
"--exclude",
43+
"tap-snapshots/**"
44+
]
45+
}
46+
}

node_modules/npm-profile/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "npm-profile",
3-
"version": "12.0.0",
3+
"version": "12.0.1",
44
"description": "Library for updating an npmjs.com profile",
55
"keywords": [],
66
"author": "GitHub Inc.",
77
"license": "ISC",
88
"dependencies": {
99
"npm-registry-fetch": "^19.0.0",
10-
"proc-log": "^5.0.0"
10+
"proc-log": "^6.0.0"
1111
},
1212
"main": "./lib/index.js",
1313
"repository": {
@@ -20,7 +20,7 @@
2020
],
2121
"devDependencies": {
2222
"@npmcli/eslint-config": "^5.0.0",
23-
"@npmcli/template-oss": "4.25.0",
23+
"@npmcli/template-oss": "4.27.1",
2424
"nock": "^13.5.6",
2525
"tap": "^16.0.1"
2626
},
@@ -46,7 +46,7 @@
4646
},
4747
"templateOSS": {
4848
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
49-
"version": "4.25.0",
49+
"version": "4.27.1",
5050
"publish": true
5151
}
5252
}

package-lock.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
"npm-install-checks": "^7.1.2",
132132
"npm-package-arg": "^13.0.1",
133133
"npm-pick-manifest": "^11.0.3",
134-
"npm-profile": "^12.0.0",
134+
"npm-profile": "^12.0.1",
135135
"npm-registry-fetch": "^19.0.0",
136136
"npm-user-validate": "^3.0.0",
137137
"p-map": "^7.0.3",
@@ -8575,17 +8575,29 @@
85758575
}
85768576
},
85778577
"node_modules/npm-profile": {
8578-
"version": "12.0.0",
8578+
"version": "12.0.1",
8579+
"resolved": "https://registry.npmjs.org/npm-profile/-/npm-profile-12.0.1.tgz",
8580+
"integrity": "sha512-Xs1mejJ1/9IKucCxdFMkiBJUre0xaxfCpbsO7DB7CadITuT4k68eI05HBlw4kj+Em1rsFMgeFNljFPYvPETbVQ==",
85798581
"inBundle": true,
85808582
"license": "ISC",
85818583
"dependencies": {
85828584
"npm-registry-fetch": "^19.0.0",
8583-
"proc-log": "^5.0.0"
8585+
"proc-log": "^6.0.0"
85848586
},
85858587
"engines": {
85868588
"node": "^20.17.0 || >=22.9.0"
85878589
}
85888590
},
8591+
"node_modules/npm-profile/node_modules/proc-log": {
8592+
"version": "6.0.0",
8593+
"resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.0.0.tgz",
8594+
"integrity": "sha512-KG/XsTDN901PNfPfAMmj6N/Ywg9tM+bHK8pAz+27fS4N4Pcr+4zoYBOcGSBu6ceXYNPxkLpa4ohtfxV1XcLAfA==",
8595+
"inBundle": true,
8596+
"license": "ISC",
8597+
"engines": {
8598+
"node": "^20.17.0 || >=22.9.0"
8599+
}
8600+
},
85898601
"node_modules/npm-registry-fetch": {
85908602
"version": "19.0.0",
85918603
"inBundle": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"npm-install-checks": "^7.1.2",
9999
"npm-package-arg": "^13.0.1",
100100
"npm-pick-manifest": "^11.0.3",
101-
"npm-profile": "^12.0.0",
101+
"npm-profile": "^12.0.1",
102102
"npm-registry-fetch": "^19.0.0",
103103
"npm-user-validate": "^3.0.0",
104104
"p-map": "^7.0.3",

0 commit comments

Comments
 (0)