I'd like to uninstall webpack 4.44.1. The SO post here on this did not work for me. When I run:
> npm uninstall -g webpack@4.44.1
up to date in 0.134s
and then when I run:
npm list -g webpack@4.44.1
it shows:
C:\Users\me\AppData\Roaming\npm
`-- (empty)
But, when I run:
npm ls
It gives me:
+-- moment@2.27.0
+-- webpack@4.44.1
| +-- @webassemblyjs/ast@1.9.0
| | +-- @webassemblyjs/helper-module-context@1.9.0 deduped
| | +-- @webassemblyjs/helper-wasm-bytecode@1.9.0
| | `-- @webassemblyjs/wast-parser@1.9.0
| | +-- @webassemblyjs/ast@1.9.0 deduped
| | +-- @webassemblyjs/floating-point-hex-parser@1.9.0
| | +-- @webassemblyjs/helper-api-error@1.9.0 deduped
| | +-- @webassemblyjs/helper-code-frame@1.9.0
| | | `-- @webassemblyjs/wast-printer@1.9.0 deduped
| | +-- @webassemblyjs/helper-fsm@1.9.0
| | ... (for brevity, I am not including the rest)
So, my question is why is the webpack 4.44.1 shows up again and how to effectively uninstall it?