npm tfs 2015 中的自定义命令

Custom command in npm tfs 2015

我正在使用 tfs 2015 创建 vNext 构建,我想 运行 在 npm 任务中自定义命令。命令 - npm lint。在构建过程中我有错误,这个命令是未知的。

这是我的步骤:

如果是start/stop/install这样的命令就没问题了。

如何自定义此步骤?

正如错误所述,npm lint 不是 cli 命令。详细cli命令列表请参考npm docs.

在 TFS 构建定义中 npm build task 不支持 运行 它。

我添加的唯一命令是 lint 之前的命令 "run"。所以最终命令将是 "run lint"。