11cb0ef41Sopenharmony_ciconst LifecycleCmd = require('../lifecycle-cmd.js') 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci// This ends up calling run-script(['stop', ...args]) 41cb0ef41Sopenharmony_ciclass Stop extends LifecycleCmd { 51cb0ef41Sopenharmony_ci static description = 'Stop a package' 61cb0ef41Sopenharmony_ci static name = 'stop' 71cb0ef41Sopenharmony_ci static params = [ 81cb0ef41Sopenharmony_ci 'ignore-scripts', 91cb0ef41Sopenharmony_ci 'script-shell', 101cb0ef41Sopenharmony_ci ] 111cb0ef41Sopenharmony_ci} 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_cimodule.exports = Stop 14