PATH: //proc/thread-self/root/lib/node_modules/npm/node_modules/bin-links/lib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 bin-target.js
↓
X
📄 check-bin.js
↓
X
📄 check-bins.js
↓
X
📄 fix-bin.js
↓
X
📄 get-node-modules.js
↓
X
📄 get-paths.js
↓
X
📄 get-prefix.js
↓
X
📄 index.js
↓
X
📄 is-windows.js
↓
X
📄 link-bin.js
↓
X
📄 link-bins.js
↓
X
📄 link-gently.js
↓
X
📄 link-mans.js
↓
X
📄 man-target.js
↓
X
📄 shim-bin.js
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: link-bins.js
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
SIMPAN PERUBAHAN