1 Star 0 Fork 0

Vue.js/ecosystem-ci

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
types.d.ts 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
soda 提交于 4个月前 . chore: dependency updates
import type { AGENTS } from '@antfu/ni'
export interface EnvironmentData {
root: string
workspace: string
vuePath: string
cwd: string
env: ProcessEnv
}
export interface RunOptions {
workspace: string
root: string
vuePath: string
vueVersion: string
overrideVueVersion?: string
verify?: boolean
skipGit?: boolean
release?: string
agent?: (typeof AGENTS)[number]
build?: Task | Task[]
test?: Task | Task[]
beforeInstall?: Task | Task[]
beforeBuild?: Task | Task[]
beforeTest?: Task | Task[]
patchFiles?: Record<string, (content: string, overrides: Overrides) => string>
}
type Task = string | { script: string; args?: string[] } | (() => Promise<any>)
export interface CommandOptions {
suites?: string[]
repo?: string
branch?: string
tag?: string
commit?: string
release?: string
verify?: boolean
publish?: boolean
skipGit?: boolean
local?: boolean
}
export interface RepoOptions {
repo: string
dir?: string
branch?: string
tag?: string
commit?: string
shallow?: boolean
overrides?: Overrides
}
export interface Overrides {
[key: string]: string | boolean
}
export interface ProcessEnv {
[key: string]: string | undefined
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vuejs/ecosystem-ci.git
git@gitee.com:vuejs/ecosystem-ci.git
vuejs
ecosystem-ci
ecosystem-ci
main

搜索帮助