我试图弄清楚npm依赖项究竟发生了什么。
我的问题的最短特定形式是:鉴于我的传递依赖图使用不同版本多次调用某个包,为什么这些不同的版本不显示在npm list
或文件系统中?
我不想仅仅为了测试而使用垃圾来破坏全局命名空间,因此将使用我当前的实际项目;我认为它很小,很清楚。
C:\ayane>npm list
ayane@3.0.1 C:\ayane
+-- clause-normal-form@2.4.0
| +-- big-integer@1.6.22
| +-- big-rational@0.10.6
| +-- clone@2.1.1
| `-- lodash@4.17.4
+-- command-files@1.1.0
| `-- glob@7.1.1
| +-- fs.realpath@1.0.0
| +-- inflight@1.0.6
| | `-- wrappy@1.0.2
| +-- inherits@2.0.3
| +-- minimatch@3.0.3
| | `-- brace-expansion@1.1.7
| | +-- balanced-match@0.4.2
| | `-- concat-map@0.0.1
| +-- once@1.4.0
| `-- path-is-absolute@1.0.1
+-- commander@2.9.0
| `-- graceful-readlink@1.0.1
+-- dimacs-parser@2.3.0
+-- get-stdin@5.0.1
+-- iop@1.4.1
`-- tptp-parser@2.5.1
到目前为止看起来很好,除了ayane
取决于clause-normal-form
2.4.0,但dimacs-parser
和tptp-parser
取决于clause-normal-form
2.3.0;为什么这没有在上面显示?
C:\ayane>tree /a
Folder PATH listing for volume OS
Volume serial number is C685-B1F1
C:.
\---node_modules
+---.bin
+---balanced-match
+---big-integer
+---big-rational
+---brace-expansion
+---clause-normal-form
+---clone
+---command-files
+---commander
+---concat-map
| +---example
| \---test
+---dimacs-parser
+---fs.realpath
+---get-stdin
+---glob
+---graceful-readlink
+---inflight
+---inherits
+---iop
+---lodash
| \---fp
+---minimatch
+---once
+---path-is-absolute
+---tptp-parser
\---wrappy
同样的问题:为什么只出现一个clause-normal-form
目录?
答案 0 :(得分:1)
这可能是因为除非另有说明,否则它只会安装同一模块的一个版本。如果clause-normal-form
版本2.3.0和2.4.0不兼容,这将是一个问题,如果它们可能会遇到一些麻烦。为了获得最佳解决方案,您的代码可以正常运行,您需要在peerDependencies
package.json
P.S:这不适用于npm版本3及更高版本,它只会警告我们手动安装它们