mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Pass npm args to preUninstall hook to be consistent with preInstall
This commit is contained in:
parent
a0c09fc617
commit
9f2a2b9869
@ -446,17 +446,22 @@ function uninstallModule(module) {
|
|||||||
var list = registry.removeModule(module);
|
var list = registry.removeModule(module);
|
||||||
log.info(log._("server.install.uninstalling",{name:module}));
|
log.info(log._("server.install.uninstalling",{name:module}));
|
||||||
|
|
||||||
var args = ['remove','--no-audit','--no-update-notifier','--no-fund','--save',module];
|
|
||||||
|
|
||||||
let triggerPayload = {
|
let triggerPayload = {
|
||||||
"module": module,
|
"module": module,
|
||||||
"dir": installDir,
|
"dir": installDir,
|
||||||
|
"args": ['--no-audit','--no-update-notifier','--no-fund','--save']
|
||||||
}
|
}
|
||||||
return hooks.trigger("preUninstall", triggerPayload).then(() => {
|
return hooks.trigger("preUninstall", triggerPayload).then((result) => {
|
||||||
// preUninstall passed
|
// preUninstall passed
|
||||||
// - run uninstall
|
// - run uninstall
|
||||||
log.trace(npmCommand + JSON.stringify(args));
|
if (result !== false) {
|
||||||
return exec.run(npmCommand,args,{ cwd: installDir}, true)
|
let extraArgs = triggerPayload.args || [];
|
||||||
|
let args = ['remove', ...extraArgs, module]
|
||||||
|
log.trace(npmCommand + JSON.stringify(args));
|
||||||
|
return exec.run(npmCommand,args,{ cwd: installDir}, true)
|
||||||
|
} else {
|
||||||
|
log.trace("skipping npm uninstall");
|
||||||
|
}
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
log.info(log._("server.install.uninstalled",{name:module}));
|
log.info(log._("server.install.uninstalled",{name:module}));
|
||||||
reportRemovedModules(list);
|
reportRemovedModules(list);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user