pnpm run
别名: run-script
运行一个在 package
的 manifest 文件中定义的脚本。
示例
假如您有个 watch
脚本配置在了package.json
中,像这样:
"scripts": {
"watch": "webpack --watch"
}
您现在可以使用 pnpm run watch
运行该脚本! 很简单吧? 对于那些不喜欢敲键盘而浪费时间的人要注意的另一件事是,所有脚本都会有 pnpm 命令的别名,所以最终 pnpm run watch
的简写是 pnpm watch
(仅适用于那些不与已有的pnpm 命令相同名字的脚本)。
Running multiple scripts
Added in: v7.27.0
You may run multiple scripts at the same time by using a regex instead of the script name.
pnpm run "/<regex>/"
Run all scripts that start with watch:
:
pnpm run "/^watch:.*/"
Details
In addition to the shell’s pre-existing PATH
, pnpm run
includes node_modules/.bin
in the PATH
provided to scripts
. This means that so long as you have a package installed, you can use it in a script like a regular command. For example, if you have eslint
installed, you can write up a script like so:
"lint": "eslint src --fix"
And even though eslint
is not installed globally in your shell, it will run.
For workspaces, <workspace root>/node_modules/.bin
is also added to the PATH
, so if a tool is installed in the workspace root, it may be called in any workspace package’s scripts
.
Differences with npm run
By default, pnpm doesn’t run arbitrary pre
and post
hooks for user-defined scripts (such as prestart
). This behavior, inherited from npm, caused scripts to be implicit rather than explicit, obfuscating the execution flow. It also led to surprising executions with pnpm serve
also running pnpm preserve
.
If for some reason you need the pre/post scripts behavior of npm, use the enable-pre-post-scripts
option.
Environment
There are some environment variables that pnpm automatically creates for the executed scripts. These environment variables may be used to get contextual information about the running process.
These are the environment variables created by pnpm:
- npm_command - 包含已执行命令的名称。 如果执行的命令是
pnpm run
,那么这个变量的值就是“run-script”。
配置项
Any options for the run
command should be listed before the script’s name. Options listed after the script’s name are passed to the executed script.
All these will run pnpm CLI with the --silent
option:
pnpm run --silent watch
pnpm --silent run watch
pnpm --silent watch
Any arguments after the command’s name are added to the executed script. So if watch
runs webpack --watch
, then this command:
pnpm run watch --no-color
will run:
webpack --watch --no-color
script-shell
- 默认值:null
- 类型:path
设置执行 pnpm run
命令脚本的 shell。
例如,要强制在 Windows 上使用 Git Bash:
pnpm 配置中设置 script-shell "C:\\Program Files\\git\\bin\\bash.exe"
shell-emulator
- 默认值: false
- 类型:Boolean
当置为 true
,pnpm 将使用 bash-like shell 这个JavaScript 实现的执行器来运行脚本。
此选项简化了跨平台脚本。 例如,默认情况下,下面的脚本将在非 POSIX 兼容系统上失败:
"scripts": {
"test": "NODE_ENV=test node test.js"
}
但是,如果 shell-emulator
设置为 true
,它将适用于所有平台。
--recursive, -r
这会从每一个 package
的“ scripts”对象中执行任意一个命令。 如果一个 package
没有该命令,就会被跳过。 如果所有 package
都没有这个命令,则会执行失败。
--if-present
如果脚本未定义,那么您可以使用 --if-present
标志以避免遇到用非零的退出代码从而导致退出。 这使您可以在不中断执行链的情况下运行可能未定义的脚本。
--parallel
完全忽略并发和拓扑排序,在所有匹配的包中立即运行给定的脚本 并输出前缀流。 这是个推荐的标志,用于在许多 packages
上长时间运行的进程,例如冗长的构建进程。
--stream
以起始package
目录作为前缀,立即从子进程输出流。 这允许从不同的 package
交替输出。
--aggregate-output
聚合并行运行的子进程的输出,并且仅在子进程完成时打印输出。 它使在运行 pnpm -r <command>
时使用 --parallel
或 --workspace-concurrency=<number>
后读取大日志更容易(尤其是在 CI 上)。 仅支持 --reporter=append-only
。
enable-pre-post-scripts
- 默认值: false
- 类型:Boolean
当置为 true
,pnpm 将自动运行任何前置/后置钩子脚本。 所以运行 pnpm foo
,就相当于运行 pnpm prefoo && pnpm foo && pnpm postfoo
。
--resume-from <package_name>
添加于:v7.22.0
从特定项目中执行。 如果您有一个巨大的工作区并且希望在特定项目中重新启动构建,而不运行构建顺序中位于它之前的所有项目,这将很有用。