在symfony项目中使用yarn安装Bootstrap时出错

问题描述 投票:0回答:1

我尝试使用yarn命令在我的symfony项目中安装bootstrap 4:

从缓存获取时出现完整性错误

我遵循 symfony 的指导文档:https://symfony.com/doc/current/frontend/encore/bootstrap.html

我尝试清除缓存,从

package.json
中删除yarn依赖项,重新安装yarn,删除
package.json
并再次安装。我还尝试使用以下命令为我的 package.json 提供许可证:“yarn 许可证列表”

{
  "devDependencies": {
    "@symfony/webpack-encore": "^0.28.0",
    "webpack-notifier": "1.6.0"
  },
  "dependencies": {
    "jquery": "^3.4.1",
    "popper": "^1.0.1"
  },
  "version": "0.0.0"
}

当我尝试使用:

yarn add bootstrap@4 --dev
时,我收到此错误:

从缓存获取时出现完整性错误

我执行的每个纱线命令的警告消息:没有许可证字段。

symfony installation bootstrap-4 yarnpkg
1个回答
3
投票

yarn cache clean

我要冒险假设通过清除缓存你删除了

node_modules
,这不是缓存(我犯了同样的错误)。

有关更多详细信息,请参阅此处的答案:

从缓存中获取时完整性不正确

© www.soinside.com 2019 - 2024. All rights reserved.