gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
64 lines (63 loc) • 2.16 kB
TypeScript
export declare const PRIORITY_PREFIX = ">";
export declare const QUEUE_PREFIX = "jhipster:";
/**
* Custom priorities to improve jhipster workflow.
*/
export declare const CUSTOM_PRIORITIES: ({
priorityName: string;
args: (generator: import("yeoman-generator").default<Record<any, any>, import("yeoman-generator").BaseOptions, import("yeoman-generator").BaseFeatures>) => {}[];
edit: true;
queueName?: undefined;
before?: undefined;
} | {
priorityName: string;
queueName: string;
before: string;
args: (generator: import("yeoman-generator").default<Record<any, any>, import("yeoman-generator").BaseOptions, import("yeoman-generator").BaseFeatures>) => {}[];
edit?: undefined;
} | {
priorityName: string;
queueName: string;
before: string;
args?: undefined;
edit?: undefined;
})[];
export declare const PRIORITY_NAMES: {
readonly INITIALIZING: "initializing";
readonly PROMPTING: "prompting";
readonly CONFIGURING: "configuring";
readonly COMPOSING: "composing";
readonly COMPOSING_COMPONENT: "composingComponent";
readonly LOADING: "loading";
readonly PREPARING: "preparing";
readonly POST_PREPARING: "postPreparing";
readonly DEFAULT: "default";
readonly WRITING: "writing";
readonly MULTISTEP_TRANSFORM: "multistepTransform";
readonly POST_WRITING: "postWriting";
readonly TRANSFORM: "transform";
readonly PRE_CONFLICTS: "preConflicts";
readonly INSTALL: "install";
readonly POST_INSTALL: "postInstall";
readonly END: "end";
};
export declare const PRIORITY_NAMES_LIST: string[];
export declare const QUEUES: {
INITIALIZING_QUEUE: string;
PROMPTING_QUEUE: string;
CONFIGURING_QUEUE: string;
COMPOSING_QUEUE: string;
COMPOSING_COMPONENT_QUEUE: string;
LOADING_QUEUE: string;
PREPARING_QUEUE: string;
POST_PREPARING_QUEUE: string;
DEFAULT_QUEUE: string;
WRITING_QUEUE: string;
MULTISTEP_TRANSFORM_QUEUE: string;
POST_WRITING_QUEUE: string;
TRANSFORM_QUEUE: string;
PRE_CONFLICTS_QUEUE: string;
INSTALL_QUEUE: string;
POST_INSTALL_QUEUE: string;
END_QUEUE: string;
};