Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stop.js « commands « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db497675a694b62a89b4c12e88ed7e10607e71df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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',
  ]

  static ignoreImplicitWorkspace = false
}
module.exports = Stop