除了符号链接之外,npm WARN是什么意思?

时间:2013-12-04 10:47:57

标签: javascript node.js npm

npm WARN excluding symbolic link是什么意思?我怎么让它消失?

2 个答案:

答案 0 :(得分:1)

<html:form styleClass="form-horizontal" action="address.do" method="post"> Name: <html:text styleClass="form-control" name="name" /><br> City <html:text styleClass="form-control" name="city" /><br> Country: <html:text styleClass="form-control" name="country" /><br> <button class="btn btn-success" type="submit">Submit</button> </html:form> 与TAR文件交互时会发出消息。

当检测到正在使用符号链接时,它将发出警告。例如,您尝试通过npm安装的存档可能包含符号链接。这些链接不会在本地文件系统上创建,而会被忽略。

答案 1 :(得分:0)

错误通常是由缓存问题引起的,在清理缓存后它们应该消失。

只需运行npm cache clear

相关问题