acorn-jsx@5.1.0 requires a peer of acorn@^6.0.0 || ^7.0.0 but none is installed. You must install peer dependencies yourself.
时间: 2024-05-09 07:15:44 浏览: 258
这是一个 NPM 的警告信息,意思是 `acorn-jsx@5.1.0` 这个包需要 `acorn` 的版本在 `6.0.0` 或者 `7.0.0` 之间,但是你当前没有安装符合要求的版本。你需要手动安装符合要求的 `acorn` 版本。你可以运行以下命令来安装:
```
npm install acorn@^7.0.0
```
或者
```
npm install acorn@^6.0.0
```
这样就可以解决这个警告信息了。
相关问题
npm WARN ERESOLVE overriding peer dependency npm WARN While resolving: acorn-jsx@5.3.2 npm WARN Found: acorn@7.4.1 npm WARN node_modules/acorn-jsx/node_modules/acorn npm WARN npm WARN Could not resolve dependency: npm WARN node_modules/acorn-jsx npm WARN acorn-jsx@"^5.3.2" from espree@9.5.2 npm WARN node_modules/vue-eslint-parser/node_modules/espree npm WARN deprecated core-js@2.6.12: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
这是一个 npm 的警告信息,它告诉你在解决 acorn-jsx 依赖问题时出现了一些冲突。它发现了一个版本为 7.4.1 的 acorn,但是 acorn-jsx 依赖的版本号是 "^5.3.2"。这个警告信息可以忽略,但是如果你想解决它,可以尝试更新 acorn-jsx 的版本,或者查看依赖于 acorn-jsx 的项目是否需要更新它们的依赖版本。此外,警告信息中还提到了 core-js 的问题,建议你将其依赖版本升级到最新版以避免潜在的问题。
阅读全文