React Yarn构建因意外行为而失败

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

虽然我尝试创建一个构建,但它却使用纱线进入了无限循环,并发出以下警告

(node:7424) DeprecationWarning: loaderUtils.parseQuery() received a non-string value which can be problematic, see https://github.com/webpack/loader-utils/issues/56
parseQuery() will be replaced with getOptions() in the next major version of loader-utils.

Warning, the following targets are using a decimal version:

  node: 6.5

We recommend using a string for minor/patch versions to avoid numbers like 6.10
getting parsed as 6.1, which can lead to unexpected behavior.

Error Screenshot

如果您需要任何文件/代码,请发表评论,我将添加,因为我无法理解问题,因此未添加任何代码

node.js reactjs webpack yarn webpack-2
1个回答
0
投票

没有您的package.json,很难说出问题出在哪里。

如果您软件包的版本(或任何依赖项)没有使用语义版本控制(例如6.10.0而不是仅6.10,可能会被裁剪为6.1),那么这就是问题所在。

当错误提到次要/补丁时,是指用点号/句点分隔的数字

..

关于此的更多信息可以在这里找到:https://semver.org/

和这里https://docs.npmjs.com/about-semantic-versioning

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