yarn 如何找到作为开发依赖项安装的模块

Posted

技术标签:

【中文标题】yarn 如何找到作为开发依赖项安装的模块【英文标题】:How does yarn find a module installed as a dev-dependency 【发布时间】:2021-02-26 13:57:52 【问题描述】:

package.json 文件中的脚本对象是 Gulp 或类似构建工具的现代替代品。假设 Vuepress 使用yarn add -D vuepress 安装(意味着 vuepress 安装在本地的 node_modules 文件夹中。

进一步,假设 package.json 文件包含以下脚本对象:

"scripts": 
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs"
  

终端中执行的命令yarn docs:dev如何解析vuepress对象?类似的调用通常会导致错误vuepress not recognized ...

附:因为我在路径环境变量中没有vuepress,所以唯一可以解决它的地方是根级node_modules文件夹。

【问题讨论】:

【参考方案1】:

我猜对了——npm 和 yarn(从终端调用)都能够检查所有环境变量,以及搜索文件夹 node_modules。在我的具体示例中,运行命令

npm run env | grep scripts

结果

npm_config_ignore_scripts=
npm_config_scripts_prepend_node_path=warn-only
npm_package_scripts_docs_build=vuepress build docs
npm_package_scripts_docs_dev=vuepress dev docs
npm_package_scripts_env=env

文章https://techsparx.com/nodejs/tools/npm-build-scripts.html有更多信息

【讨论】:

以上是关于yarn 如何找到作为开发依赖项安装的模块的主要内容,如果未能解决你的问题,请参考以下文章

如何找到我的 Perl 脚本的模块依赖项?

在 docker 容器内安装依赖项后如何复制回主机 package-lock.json/yarn.lock?

如何强制 Yarn 重新安装软件包?

如何使用 npm install 或 yarn 仅安装具有自己版本的 package.json 依赖项

当我只需要构建时,为啥 yarn 会安装开发依赖项?

如何使用“yarn”或“npm”列出特定类型的依赖项