PATH: //usr/lib/node_modules/npm/lib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 arborist-cmd.js
↓
X
📁 auth/
X
📄 base-command.js
↓
X
📄 cli.js
↓
X
📁 commands/
X
📄 lifecycle-cmd.js
↓
X
📄 npm.js
↓
X
📄 package-url-cmd.js
↓
X
📁 utils/
X
📁 workspaces/
X
SAVING...
BERHASIL DIUBAH!
EDITING: lifecycle-cmd.js
// The implementation of commands that are just "run a script" // restart, start, stop, test const BaseCommand = require('./base-command.js') class LifecycleCmd extends BaseCommand { static usage = ['[-- <args>]'] static isShellout = true async exec (args, cb) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } async execWorkspaces (args, filters, cb) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } } module.exports = LifecycleCmd
SIMPAN PERUBAHAN