Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does npm WARN excluding symbolic link mean?

What does npm WARN excluding symbolic link mean? And how do I make it go away?

like image 986
Dom Barker Avatar asked Dec 04 '13 10:12

Dom Barker


1 Answers

The message is emitted when npm interacts with a TAR file.

When it detects that a symbolic link is being used, it will emit the warning. For example, an archive you're trying to install through npm may contain a symbolic link. Those links will not be created on your local file system and are ignored.

like image 97
Oliver Salzburg Avatar answered Oct 13 '22 01:10

Oliver Salzburg