fix(angular): add namedInputs to expected angular extension properties (#11593)
This commit is contained in:
parent
19dfebd94f
commit
0c25e57bf9
@ -25,6 +25,7 @@ const allowedProjectExtensions = [
|
|||||||
'configFilePath',
|
'configFilePath',
|
||||||
'$schema',
|
'$schema',
|
||||||
'generators',
|
'generators',
|
||||||
|
'namedInputs',
|
||||||
];
|
];
|
||||||
|
|
||||||
const allowedWorkspaceExtensions = [
|
const allowedWorkspaceExtensions = [
|
||||||
@ -37,6 +38,7 @@ const allowedWorkspaceExtensions = [
|
|||||||
'targetDefaults',
|
'targetDefaults',
|
||||||
'files',
|
'files',
|
||||||
'generators',
|
'generators',
|
||||||
|
'namedInputs',
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!patched) {
|
if (!patched) {
|
||||||
|
|||||||
@ -35,6 +35,8 @@ export type TargetDependencies = Record<
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Nx.json configuration
|
* Nx.json configuration
|
||||||
|
*
|
||||||
|
* @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
|
||||||
*/
|
*/
|
||||||
export interface NxJsonConfiguration<T = '*' | string[]> {
|
export interface NxJsonConfiguration<T = '*' | string[]> {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -11,6 +11,7 @@ export type WorkspaceJsonConfiguration = ProjectsConfigurations;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Projects Configurations
|
* Projects Configurations
|
||||||
|
* @note: when adding properties here add them to `allowedWorkspaceExtensions` in adapter/compat.ts
|
||||||
*/
|
*/
|
||||||
export interface ProjectsConfigurations {
|
export interface ProjectsConfigurations {
|
||||||
/**
|
/**
|
||||||
@ -37,6 +38,8 @@ export type ProjectType = 'library' | 'application';
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Project configuration
|
* Project configuration
|
||||||
|
*
|
||||||
|
* @note: when adding properties here add them to `allowedProjectExtensions` in adapter/compat.ts
|
||||||
*/
|
*/
|
||||||
export interface ProjectConfiguration {
|
export interface ProjectConfiguration {
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user