Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
13
Dependencies/NodeJS/node_modules/npm/lib/commands/restart.js
generated
vendored
Normal file
13
Dependencies/NodeJS/node_modules/npm/lib/commands/restart.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
const LifecycleCmd = require('../lifecycle-cmd.js')
|
||||
|
||||
// This ends up calling run-script(['restart', ...args])
|
||||
class Restart extends LifecycleCmd {
|
||||
static description = 'Restart a package'
|
||||
static name = 'restart'
|
||||
static params = [
|
||||
'ignore-scripts',
|
||||
'script-shell',
|
||||
]
|
||||
}
|
||||
|
||||
module.exports = Restart
|
Reference in New Issue
Block a user