From 64e8d716e28f17f66ab44fa24433434d054c5e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A9=99=E8=89=B2=E9=98=B3=E5=85=89?= <1122@hizhou.cn> Date: Tue, 29 Mar 2022 10:31:04 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20=E8=B0=83=E6=95=B4=E6=96=87?= =?UTF-8?q?=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index e71f42d..ad2af9c 100644 --- a/readme.md +++ b/readme.md @@ -58,14 +58,19 @@ deploy({ | ---- | ---- | ---- | ---- | | **prefix** | `String` | - | 默认前缀路径 | | **transfer** | `Array/Object` | null | 转移文件部署路径 | -| **ignoreRule** | `String` | - | 忽略文件规则,ignore通用规则,例外:忽略目录后,不会扫描该目录下的指定路径,有需求的请用transfer代替 | +| **ignoreRule** | `String` | - | 忽略文件规则,ignore通用规则,例外:忽略目录后,不会扫描该目录下的指定路径 | + `transfer`配置说明 | 属性 | 值类型 | 默认值 | 说明 | | ---- | ---- | ---- | ---- | | **match** | `String` | - | 匹配的路径名称,相对全名称 | | **remotePath** | `String` | - | 被转移到的目标路径,绝对全名称 | +| **type** | `String` | 'copy' | 转移类型:`move` \| `copy` move转移后原来的列表不会存在此文件的任务 | | **deployType** | `String` | - | 可以指定单个文件部署类型,默认原部署类型 | + +---------- + ### `config:` 部署的上传服务配置 | 属性 | 值类型 | 默认值 | 说明 | @@ -73,4 +78,6 @@ deploy({ | **deployType** | `String` | 'server' | 部署类型,可选值:`oss` \| `cos` \| `server` | | **alioss** | `Object` | null | 阿里云OSS的配置,参考配置概览 | | **cos** | `Object` | null | 腾讯云COS的配置,参考配置概览 | -| **server** | `Object` | null | 服务器的配置,参考配置概览 | +| **server** | `Object` | null | 服务器的配置,参考配置概览 | + +-----------