Skip to content

Commit

Permalink
✨ feat(vercel-deploy-tool): 增加 vercelJsonPath 的配置,允许用户自己上传配置文件。
Browse files Browse the repository at this point in the history
  • Loading branch information
ruan-cat committed Nov 12, 2024
1 parent c76cb97 commit 0dc8be5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
9 changes: 9 additions & 0 deletions demos/vercel-deploy-tool/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,15 @@ export interface Config {
/** 用户项目id */
vercelProjectId: string;

/**
* 用户提供的 vercel.json 配置文件
* @description
* 有时候 用户需要提供自己的一套配置文件
*
* 这里提供配置路径
*/
vercelJsonPath?: string;

/** 在build命令阶段后 执行的用户命令 */
afterBuildTasks?: string[];

Expand Down
10 changes: 8 additions & 2 deletions demos/vercel-deploy-tool/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,15 @@ function getVercelTokenCommandArgument() {
return <const>[`--token=${config.vercelToken}`];
}

/** 以命令参数数组的形式,获得项目vercel的本地配置 */
/**
* 以命令参数数组的形式,获得项目vercel的本地配置
* @description
* 如果用户自己提供了vercel的本地配置 那么就使用用户的。
*
* 否则就使用自己生成的文件。
*/
function getVercelLocalConfigCommandArgument() {
return <const>[`--local-config=${vercelNullConfigPath}`];
return <const>[`--local-config=${config?.vercelJsonPath ?? vercelNullConfigPath}`];
}

/** 以命令参数数组的形式,获得工作目录 */
Expand Down

0 comments on commit 0dc8be5

Please sign in to comment.