export interface ICreateOptions { /** 项目类型 */ type?: 'vue2' | 'npm' | 'simple-html' /** 项目名 */ project?: string /** 项目仓库地址 */ git?: string } export interface IFeatureOptions { version?: string type?: string } export interface IReleaseOptions { /** 是否执行 git push */ push?: boolean /** 是否执行 git add . && git commit -m "[message]" */ message?: string }