我的node_modules中安装了一个未识别的包



有一个名为phantomjs-prebuilt@2.1.16的包,它不断安装在我的node_modules文件夹中,我找不到跟踪它的方法来知道它来自哪里。这个包已经被弃用了,当我尝试dockerize我的nextjs项目时,它会抛出错误。这个错误告诉我这个包没有我的体系结构arm64的二进制文件(我有一个M1 MacOS):

102.1 [4/4] Building fresh packages...
104.7 error /usr/src/app/node_modules/phantomjs-prebuilt: Command failed.
104.7 Exit code: 1
104.7 Command: node install.js
104.7 Arguments: 
104.7 Directory: /usr/src/app/node_modules/phantomjs-prebuilt
104.7 Output:
104.7 PhantomJS not found on PATH
104.7 Unexpected platform or architecture: linux/arm64
104.7 It seems there is no binary available for your platform/architecture
104.7 Try to install PhantomJS globally

但这并不困扰我,我只是想删除它或跟踪正在安装它的依赖。有办法做到吗?我已经尝试过yarn list,但它只显示这个包的依赖关系,而不是正在安装它的包:

├─ phantomjs-prebuilt@2.1.16
│  ├─ fs-extra@1.0.0
│  └─ jsonfile@2.4.0
✨  Done in 0.39s.

任何帮助都是感激的。谢谢你!

如果您使用的是纱线,请尝试:

yarn why phantomjs-prebuilt

文档

相关内容

  • 没有找到相关文章

最新更新