PATH:
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
bin-links
/
lib
const isWindows = require('./is-windows.js') const binTarget = require('./bin-target.js') const { dirname, resolve, relative } = require('path') const linkBin = isWindows ? require('./shim-bin.js') : require('./link-bin.js') const normalize = require('npm-normalize-package-bin') const linkBins = ({ path, pkg, top, force }) => { pkg = normalize(pkg) if (!pkg.bin) { return Promise.resolve([]) } const promises = [] const target = binTarget({ path, top }) for (const [key, val] of Object.entries(pkg.bin)) { const to = resolve(target, key) const absFrom = resolve(path, val) const from = relative(dirname(to), absFrom) promises.push(linkBin({ path, from, to, absFrom, force })) } return Promise.all(promises) } module.exports = linkBins
[-] bin-target.js
[edit]
[-] link-gently.js
[edit]
[+]
..
[-] link-bin.js
[edit]
[-] check-bins.js
[edit]
[-] get-prefix.js
[edit]
[-] fix-bin.js
[edit]
[-] man-target.js
[edit]
[-] is-windows.js
[edit]
[-] shim-bin.js
[edit]
[-] index.js
[edit]
[-] link-bins.js
[edit]
[-] link-mans.js
[edit]
[-] check-bin.js
[edit]
[-] get-node-modules.js
[edit]
[-] get-paths.js
[edit]