1

在此处查看库https://github.com/Microsoft/azure-pipelines-task-lib/blob/master/node/docs/azure-pipelines-task-lib.md

我正在使用它来创建一个最小的发布任务,我可以成功调用它。在此任务中,我调用const myUrl: string = tl.getEndpointUrl('myEndpoint', true); 了如何使用此 URL 发出 Web 请求?

我已经尝试import * as rm from 'typed-rest-client/RestClient';并使用了其余客户端,但是当我在 Azure devops 构建代理上运行它时,我得到了输出:

##[错误]未处理:找不到模块'typed-rest-client/RestClient'

4

1 回答 1

1

我需要确保npm install typed-rest-client --save从我的文件所在的同一文件夹中运行.ts,以确保它被打包为node_modules我上传的文件的一部分。

于 2019-04-02T20:46:01.503 回答