Skip to content

Commit

Permalink
adjusts to microfrontends type
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 11, 2024
1 parent 4bcbdc3 commit 16bf08b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 0 additions & 4 deletions lib/jdl/core/types/json-config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ type JSONBlueprint = {
version?: string;
} & Record<string, any>;

type JSONMicrofrontend = {
baseName: string;
};
type JSONGeneratorJhipsterContentDeployment = {
appsFolders?: string[];
clusteredDbApps?: string[];
Expand All @@ -27,7 +24,6 @@ type AbstractJSONGeneratorJhipsterContent = ApplicationConfiguration & JSONGener
type JSONGeneratorJhipsterContent = {
promptValues?: Partial<JSONGeneratorJhipsterContent>;
blueprints?: JSONBlueprint[] | null;
microfrontends?: JSONMicrofrontend[] | null;
} & AbstractJSONGeneratorJhipsterContent;

type PostProcessedJSONGeneratorJhipsterContent = {
Expand Down
1 change: 1 addition & 0 deletions lib/types/application/yo-rc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type ApplicationConfiguration = Simplify<
lastLiquibaseTimestamp?: number;
blueprints?: { name: string }[];
testFrameworks?: string[];
microfrontends?: { baseName: string }[];
} & ExportStoragePropertiesFromCommand<typeof import('../../../generators/app/command.js').default> &
ExportStoragePropertiesFromCommand<typeof import('../../../generators/base/command.js').default> &
ExportStoragePropertiesFromCommand<typeof import('../../../generators/bootstrap-application-base/command.js').default> &
Expand Down

0 comments on commit 16bf08b

Please sign in to comment.