From a07bb8e692a85b55d51850534c09fa58224c2285 Mon Sep 17 00:00:00 2001 From: Michael Garvin Date: Tue, 12 Jan 2021 09:27:37 -0800 Subject: [PATCH] fix(uninstall): match usage w/ docs --- lib/uninstall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uninstall.js b/lib/uninstall.js index 83a0b009699eb..4638adc5f3e89 100644 --- a/lib/uninstall.js +++ b/lib/uninstall.js @@ -9,7 +9,7 @@ const completion = require('./utils/completion/installed-shallow.js') const usage = usageUtil( 'uninstall', - 'npm uninstall [<@scope>/][@]... [--save-prod|--save-dev|--save-optional] [--no-save]' + 'npm uninstall [<@scope>/][@]... [--no-save]' ) const cmd = (args, cb) => rm(args).then(() => cb()).catch(cb)