fix(nx-dev): resolve type interface conflicts (#14611)
This commit is contained in:
parent
7b1ed8e4b4
commit
9d1969e91f
@ -64,7 +64,7 @@ export function getSchemaViewModel(
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
hidden: schema.hidden,
|
hidden: schema.hidden,
|
||||||
deprecated: schema['x-deprecated'],
|
deprecated: schema['x-deprecated'] || '',
|
||||||
type: schema.type,
|
type: schema.type,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -76,7 +76,6 @@ export interface SchemaMetadata {
|
|||||||
path: string;
|
path: string;
|
||||||
schema: NxSchema | null;
|
schema: NxSchema | null;
|
||||||
type: 'executor' | 'generator';
|
type: 'executor' | 'generator';
|
||||||
|
|
||||||
'x-deprecated'?: string;
|
'x-deprecated'?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,6 +83,7 @@ export interface NxSchema extends JsonSchema1 {
|
|||||||
description: string;
|
description: string;
|
||||||
examplesFile: string;
|
examplesFile: string;
|
||||||
hidden: boolean;
|
hidden: boolean;
|
||||||
|
presets: { name: string; keys: string[] }[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export type IntrinsicPackageMetadata = Omit<
|
export type IntrinsicPackageMetadata = Omit<
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user