简体   繁体   中英

You have installed webpack-cli and webpack-command together

When I try running npm run build for a new webpack build I get

You have installed webpack-cli and webpack-command together. To work with the "webpack" command you need only one CLI package, please remove one of them or use them directly via their binary.

I think I installed them globally. I tried, deleting them, webpack, deleating node clearing cache but I keep getting the same result.

Using webpack 4

{
"name": "ls",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
  "build": "webpack"
 },
 "author": "",
 "license": "ISC",
 "devDependencies": {
 "webpack": "^4.16.5",
 "webpack-cli": "^3.1.0"
 }
}

我认为消息非常清楚,因此只需运行npm uninstall "webpack-command"即可删除webpack-command(b / c“ webpack-cli”具有较新的版本)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM