generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
95 lines (94 loc) • 3.84 kB
TypeScript
/**
* Copyright 2013-2026 the original author or authors from the JHipster project.
*
* This file is part of the JHipster project, see https://www.jhipster.tech/
* for more information.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { Priority } from 'yeoman-generator';
/**
* Custom priorities to improve jhipster workflow.
*/
export declare const CUSTOM_PRIORITIES: {
priorityName: string;
queueName: string;
before: string;
args: (generator: import("yeoman-generator").default<Record<any, any>, import("yeoman-generator").BaseOptions, {
unique?: true | "argument" | "namespace" | undefined;
tasksMatchingPriority?: boolean | undefined;
taskPrefix?: string | undefined;
skipParseOptions?: boolean | undefined;
disableInGeneratorOptionsSupport?: boolean | undefined;
customPriorities?: Priority[] | undefined;
inheritTasks?: boolean | undefined;
configTransform?: import("yeoman-generator").StorageTransform<Record<string, any>> | undefined;
uniqueBy?: string | undefined;
uniqueGlobally?: boolean | undefined;
customCommitTask?: boolean | (() => Promise<void> | void) | undefined;
customInstallTask?: (boolean | import("@yeoman/types").InstallTask | "ask") | undefined;
}>) => {}[];
}[];
export declare const WORKSPACES_PRIORITY_NAMES: {
readonly PROMPTING_WORKSPACES: "promptingWorkspaces";
readonly CONFIGURING_WORKSPACES: "configuringWorkspaces";
readonly LOADING_WORKSPACES: "loadingWorkspaces";
readonly PREPARING_WORKSPACES: "preparingWorkspaces";
};
export declare const PRIORITY_NAMES: {
readonly PROMPTING_WORKSPACES: "promptingWorkspaces";
readonly CONFIGURING_WORKSPACES: "configuringWorkspaces";
readonly LOADING_WORKSPACES: "loadingWorkspaces";
readonly PREPARING_WORKSPACES: "preparingWorkspaces";
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 QUEUES: {
PROMPTING_WORKSPACES_QUEUE: string;
CONFIGURING_WORKSPACES_QUEUE: string;
LOADING_WORKSPACES_QUEUE: string;
PREPARING_WORKSPACES_QUEUE: string;
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;
};
export declare const PRIORITY_NAMES_LIST: string[];