webpack-cli 未知参数:--output [英] webpack-cli Unknown argument: --output

查看:68
本文介绍了webpack-cli 未知参数:--output的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的 npm、node js 版本:

My npm, node js versions:

当我尝试运行 npm dev 命令时:

When I try to run the npm dev command:

日志文件:

0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'run', 'dev' ]
2 info using npm@6.14.8
3 info using node@v14.15.0
4 verbose run-script [ 'predev', 'dev', 'postdev' ]
5 info lifecycle winteka@1.0.0~predev: winteka@1.0.0
6 info lifecycle winteka@1.0.0~dev: winteka@1.0.0
7 verbose lifecycle winteka@1.0.0~dev: unsafe-perm in lifecycle true
8 verbose lifecycle winteka@1.0.0~dev: PATH: /usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/home/dziugas/winteka/node_modules/.bin:/home/dziugas/.local/share/virtualenvs/winteka-rp-_dylZ/bin:/home/dziugas/.vscode-server/bin/fcac248b077b55bae4ba5bab613fd6e9156c2f0c/bin:/home/dziugas/.local/bin:/home/dziugas/.vscode-server/bin/fcac248b077b55bae4ba5bab613fd6e9156c2f0c/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
9 verbose lifecycle winteka@1.0.0~dev: CWD: /home/dziugas/winteka
10 silly lifecycle winteka@1.0.0~dev: Args: [
10 silly lifecycle   '-c',
10 silly lifecycle   'webpack --mode development --watch ./winteka/frontend/src/index.js --output ./winteka/frontend/static/frontend/main.js'
10 silly lifecycle ]
11 silly lifecycle winteka@1.0.0~dev: Returned: code: 2  signal: null
12 info lifecycle winteka@1.0.0~dev: Failed to exec dev script
13 verbose stack Error: winteka@1.0.0 dev: `webpack --mode development --watch ./winteka/frontend/src/index.js --output ./winteka/frontend/static/frontend/main.js`
13 verbose stack Exit status 2
13 verbose stack     at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:332:16)
13 verbose stack     at EventEmitter.emit (events.js:315:20)
13 verbose stack     at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14)
13 verbose stack     at ChildProcess.emit (events.js:315:20)
13 verbose stack     at maybeClose (internal/child_process.js:1048:16)
13 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5)
14 verbose pkgid winteka@1.0.0
15 verbose cwd /home/dziugas/winteka
16 verbose Linux 5.4.0-52-generic
17 verbose argv "/usr/local/bin/node" "/usr/local/bin/npm" "run" "dev"
18 verbose node v14.15.0
19 verbose npm  v6.14.8
20 error code ELIFECYCLE
21 error errno 2
22 error winteka@1.0.0 dev: `webpack --mode development --watch ./winteka/frontend/src/index.js --output ./winteka/frontend/static/frontend/main.js`
22 error Exit status 2
23 error Failed at the winteka@1.0.0 dev script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 2, true ]

有什么问题?这是我在 package.json 中的脚本行

What can be wrong? This is my script line in the package.json

  "scripts": {
    "dev": "webpack --mode development --watch ./winteka/frontend/src/index.js --output ./winteka/frontend/static/frontend/main.js",
    "build": "webpack --mode production ./winteka/frontend/src/index.js --output ./winteka/frontend/static/frontend/main.js"
  }

以及 package.json 文件中安装的包:

And the installed packages in the package.json file:

  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@babel/preset-env": "^7.12.1",
    "@babel/preset-react": "^7.12.5",
    "babel-loader": "^8.2.1",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "webpack": "^5.4.0",
    "webpack-cli": "^4.2.0"
  },
  "dependencies": {
    "prop-types": "^15.7.2",
    "react": "^17.0.1",
    "react-dom": "^17.0.1",
    "styled-components": "^5.2.1"
  }

过去我用 npm 和 node.js 制作了几个服务器,我使用相同的方法,之前一切正常.我该如何解决?

In the past I have made few servers with the npm and node.js, I was using the same method and everything worked before. How can I fix it?

推荐答案

它是一个旧版本的 webpack,所以你应该使用 --output-path<而不是 --output/代码>

It's a bit older version of webpack, so instead of --output you should use --output-path

这篇关于webpack-cli 未知参数:--output的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆