我现在已经安装了webpack,我正在尝试安装webpack-cli,但是发生以下错误:

    $ npm i --save-dev webpack-cli

    > [email protected] postinstall D:\Development\Practices\sample\starter\node_modules\webpack-cli
    > lightercollective

    'lightercollective' is not recognized as an internal or external command,
    operable program or batch file.
    npm WARN [email protected] No description
    npm WARN [email protected] No repository field.
    npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
    npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! [email protected] postinstall: `lightercollective`
    npm ERR! Exit status 1
    npm ERR!
    npm ERR! Failed at the [email protected] postinstall script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\rajan\AppData\Roaming\npm-cache\_logs\2019-01-08T08_45_44_898Z-debug.log

注意:
  • 我尝试重新启动命令行。
  • 我也尝试过npm cache clean --force
  • 然后谷歌搜索大约一个小时。
  • 最后,上述消息中的 lightercollective被识别为什么。.是什么?使困惑???
  • 最佳答案

    安装:

    npm i -g lightercollective

    它们会更改内容...您必须在获取软件包时指定版本号,否则如果发生某些重大更改,以后将无法使用。

    09-19 13:12