@shipmaster/upload-sourcemap-core
v2.0.2
Published
auto upload source map to ali arms
Downloads
2
Readme
auto upload source map to ali arms
Base on https://next.api.aliyun.com/api/ARMS/2019-08-08/Upload?lang=TYPESCRIPT¶ms={}
自动遍历指定路径下的.map 文件, 并上传到阿里云 arms 的 source map 列表中
抛出一个方法, 接收两个参数:config 和 path,
path 就是打包后的路径,插件会将路径里面的以.map 结尾的所有文件遍历出来并上传。
config 接收四个参数,详细如下(config: ConfigType):
// 其他选项去这个包 @alicloud/openapi-client,
type ClientConfigType = {
accessKeyId: string; // https://usercenter.console.aliyun.com/
accessKeySecret: string;
regionId?: string; // 默认 cn-hangzhou
[key: string]: any;
};
// 其他选项在@alicloud/arms20190808
type UploadDefaultConfigType = {
pid: string; //应用ID
[key: string]: any;
};
type ConfigType = {
clientConfig: ClientConfigType;
uploadDefaultConfig: UploadDefaultConfigType;
maxRetryTimes?: number; //上传失败后重试次数,默认六次
disabled?: boolean; //是否上传, 默认是
};
接口限制文件大小,大于5M传不上去, 要分包