Skip to content

Commit 0a74f6d

Browse files
committed
1 parent 32bdd83 commit 0a74f6d

File tree

14 files changed

+438
-241
lines changed

14 files changed

+438
-241
lines changed

node_modules/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
!/archy
7070
!/balanced-match
7171
!/bin-links
72+
!/bin-links/node_modules/
73+
/bin-links/node_modules/*
74+
!/bin-links/node_modules/npm-normalize-package-bin
75+
!/bin-links/node_modules/proc-log
7276
!/binary-extensions
7377
!/brace-expansion
7478
!/cacache
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) npm, 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: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
// pass in a manifest with a 'bin' field here, and it'll turn it
2+
// into a properly santized bin object
3+
const { join, basename } = require('path')
4+
5+
const normalize = pkg =>
6+
!pkg.bin ? removeBin(pkg)
7+
: typeof pkg.bin === 'string' ? normalizeString(pkg)
8+
: Array.isArray(pkg.bin) ? normalizeArray(pkg)
9+
: typeof pkg.bin === 'object' ? normalizeObject(pkg)
10+
: removeBin(pkg)
11+
12+
const normalizeString = pkg => {
13+
if (!pkg.name) {
14+
return removeBin(pkg)
15+
}
16+
pkg.bin = { [pkg.name]: pkg.bin }
17+
return normalizeObject(pkg)
18+
}
19+
20+
const normalizeArray = pkg => {
21+
pkg.bin = pkg.bin.reduce((acc, k) => {
22+
acc[basename(k)] = k
23+
return acc
24+
}, {})
25+
return normalizeObject(pkg)
26+
}
27+
28+
const removeBin = pkg => {
29+
delete pkg.bin
30+
return pkg
31+
}
32+
33+
const normalizeObject = pkg => {
34+
const orig = pkg.bin
35+
const clean = {}
36+
let hasBins = false
37+
Object.keys(orig).forEach(binKey => {
38+
const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1)
39+
40+
if (typeof orig[binKey] !== 'string' || !base) {
41+
return
42+
}
43+
44+
const binTarget = join('/', orig[binKey].replace(/\\/g, '/'))
45+
.replace(/\\/g, '/').slice(1)
46+
47+
if (!binTarget) {
48+
return
49+
}
50+
51+
clean[base] = binTarget
52+
hasBins = true
53+
})
54+
55+
if (hasBins) {
56+
pkg.bin = clean
57+
} else {
58+
delete pkg.bin
59+
}
60+
61+
return pkg
62+
}
63+
64+
module.exports = normalize
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "npm-normalize-package-bin",
3+
"version": "5.0.0",
4+
"description": "Turn any flavor of allowable package.json bin into a normalized object",
5+
"main": "lib/index.js",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/npm/npm-normalize-package-bin.git"
9+
},
10+
"author": "GitHub Inc.",
11+
"license": "ISC",
12+
"scripts": {
13+
"test": "tap",
14+
"snap": "tap",
15+
"lint": "npm run eslint",
16+
"postlint": "template-oss-check",
17+
"template-oss-apply": "template-oss-apply --force",
18+
"lintfix": "npm run eslint -- --fix",
19+
"posttest": "npm run lint",
20+
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
21+
},
22+
"devDependencies": {
23+
"@npmcli/eslint-config": "^5.0.0",
24+
"@npmcli/template-oss": "4.27.1",
25+
"tap": "^16.3.0"
26+
},
27+
"files": [
28+
"bin/",
29+
"lib/"
30+
],
31+
"engines": {
32+
"node": "^20.17.0 || >=22.9.0"
33+
},
34+
"templateOSS": {
35+
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
36+
"version": "4.27.1",
37+
"publish": "true"
38+
},
39+
"tap": {
40+
"nyc-arg": [
41+
"--exclude",
42+
"tap-snapshots/**"
43+
]
44+
}
45+
}
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+
}

0 commit comments

Comments
 (0)