// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
alt-nodejs22
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
commands
[ PARENT ]
EDIT :: stop.js
const LifecycleCmd = require('../lifecycle-cmd.js') // This ends up calling run-script(['stop', ...args]) class Stop extends LifecycleCmd { static description = 'Stop a package' static name = 'stop' static params = [ 'ignore-scripts', 'script-shell', ] } module.exports = Stop
SAVE
CANCEL