来自 PostCSS 插件的未知错误..可能的错误

Unknown error from PostCSS plugin..possible bug

PostCSS 插件出现未知错误,导致错误。

我的 angular 版本:

    _                      _                 ____ _     ___
   / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
  / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
 / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
/_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
               |___/

Angular CLI: 1.6.2
Node: 6.12.2
OS: linux x64
Angular: 5.1.3
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router

@angular/cli: 1.6.2
@angular-devkit/build-optimizer: 0.0.36
@angular-devkit/core: 0.0.22
@angular-devkit/schematics: 0.0.42
@ngtools/json-schema: 1.1.0
@ngtools/webpack: 1.9.2
@schematics/angular: 0.1.11
@schematics/schematics: 0.0.11
typescript: 2.4.2
webpack: 3.10.0

现在,当我 运行 使用 ng serve 或 ng build 的项目时:

发生这种情况:

13% building modules 31/40 modules 9 active .../webpack/hot nonrecursive /^./log$/Unknown error from PostCSS plugin.Your current PostCSS version is 6.0.15, but autoprefixer uses 5.2.18. Perhaps this is the source of the error below.

91% additional chunk assets processingError: ENOENT: no such file or directory, open '/home/telekha-01/workspace/rajtelekha-survey-track- web-de11d86a7c75/node_modules/jquery/dist/jquery.min.js' at Error (native)

我尝试更新 PostCSS 和 autoprefixer,当我 运行 项目时它再次出现 同样的错误

也在其他各种网站和 Whosebug 上进行了研究,但找不到解决方案。 在 github 中,他们说这可能是一个需要修复的错误。无法清楚地了解那里发生了什么。

如果是bug,修复了吗?请给我一个解决方案。

感谢和问候

我终于可以摆脱错误了。

我必须降级 bootstrap 才能解决问题。

我按照以下步骤降级了 bootstrap。

卸载bootstrap@4.0.0-beta.3:

npm uninstall bootstrap --save

然后安装bootstrap@4.0.0-beta.2:

npm install bootstrap@4.0.0-beta.2 --save

成功了!