UNPKG

@git.zone/cli

Version:

A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.

34 lines (33 loc) 789 B
export type TGitzoneProjectType = 'npm' | 'service' | 'wcc' | 'website'; /** * type of the actual gitzone data */ export interface IGitzoneConfigData { projectType: TGitzoneProjectType; module: { githost: string; gitscope: string; gitrepo: string; description: string; npmPackageName: string; license: string; projectDomain: string; assetbrokerUrl: string; legalUrl: string; }; copy: { [key: string]: string; }; npmciOptions: { npmAccessLevel: 'public' | 'private'; }; } /** * gitzone config */ export declare class GitzoneConfig { static fromCwd(): Promise<GitzoneConfig>; data: IGitzoneConfigData; readConfigFromCwd(): Promise<void>; constructor(); }