Skip to main content

yarn exec

执行 shell 脚本。

用法

$ yarn exec <commandName> ...

示例

执行单个 shell 命令 :

yarn exec echo Hello World

执行 shell 脚本 :

yarn exec 'tsc & babel src --out-dir lib'

详情

此命令仅使用可移植 shell 在活动工作区根目录上下文中执行 shell 脚本。它还确保以与当前项目兼容的方式调用它(例如,在 PnP 项目中,将以正确将 PnP 注入环境的方式设置环境)。