PATH: //usr/lib/node_modules/npm/lib/utils
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 ansi-trim.js
↓
X
📄 audit-error.js
↓
X
📄 cmd-list.js
↓
X
📁 completion/
X
📄 completion.sh
↓
X
📁 config/
X
📄 did-you-mean.js
↓
X
📄 display.js
↓
X
📄 error-message.js
↓
X
📄 exit-handler.js
↓
X
📄 explain-dep.js
↓
X
📄 explain-eresolve.js
↓
X
📄 format-bytes.js
↓
X
📄 format-search-stream.js
↓
X
📄 get-identity.js
↓
X
📄 is-windows.js
↓
X
📄 log-file.js
↓
X
📄 log-shim.js
↓
X
📄 npm-usage.js
↓
X
📄 open-url-prompt.js
↓
X
📄 open-url.js
↓
X
📄 otplease.js
↓
X
📄 ping.js
↓
X
📄 pulse-till-done.js
↓
X
📄 queryable.js
↓
X
📄 read-user-info.js
↓
X
📄 reify-finish.js
↓
X
📄 reify-output.js
↓
X
📄 replace-info.js
↓
X
📄 tar.js
↓
X
📄 timers.js
↓
X
📄 update-notifier.js
↓
X
📄 validate-lockfile.js
↓
X
📄 web-auth.js
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: log-shim.js
const NPMLOG = require('npmlog') const PROCLOG = require('proc-log') // Sets getter and optionally a setter // otherwise setting should throw const accessors = (obj, set) => (k) => ({ get: () => obj[k], set: set ? (v) => (obj[k] = v) : () => { throw new Error(`Cant set ${k}`) }, }) // Set the value to a bound function on the object const value = (obj) => (k) => ({ value: (...args) => obj[k].apply(obj, args), }) const properties = { // npmlog getters/setters level: accessors(NPMLOG, true), heading: accessors(NPMLOG, true), levels: accessors(NPMLOG), gauge: accessors(NPMLOG), stream: accessors(NPMLOG), tracker: accessors(NPMLOG), progressEnabled: accessors(NPMLOG), // npmlog methods useColor: value(NPMLOG), enableColor: value(NPMLOG), disableColor: value(NPMLOG), enableUnicode: value(NPMLOG), disableUnicode: value(NPMLOG), enableProgress: value(NPMLOG), disableProgress: value(NPMLOG), clearProgress: value(NPMLOG), showProgress: value(NPMLOG), newItem: value(NPMLOG), newGroup: value(NPMLOG), // proclog methods notice: value(PROCLOG), error: value(PROCLOG), warn: value(PROCLOG), info: value(PROCLOG), verbose: value(PROCLOG), http: value(PROCLOG), silly: value(PROCLOG), pause: value(PROCLOG), resume: value(PROCLOG), } const descriptors = Object.entries(properties).reduce((acc, [k, v]) => { acc[k] = { enumerable: true, ...v(k) } return acc }, {}) // Create an object with the allowed properties rom npm log and all // the logging methods from proc log // XXX: this should go away and requires of this should be replaced with proc-log + new display module.exports = Object.freeze(Object.defineProperties({}, descriptors))
SIMPAN PERUBAHAN