Navigation Menu

Skip to content

Commit

Permalink
fix(angular): change mfe schema port type to number (#9420)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Mar 21, 2022
1 parent 8072007 commit 99d871a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/generated/api-angular/generators/mfe-host.md
Expand Up @@ -55,6 +55,6 @@ The name of the host app to attach this host app to.

### port

Type: `string`
Type: `number`

The port on which this app should be served.
2 changes: 1 addition & 1 deletion docs/generated/api-angular/generators/mfe-remote.md
Expand Up @@ -55,6 +55,6 @@ The name of the host app to attach this remote app to.

### port

Type: `string`
Type: `number`

The port on which this app should be served.
2 changes: 1 addition & 1 deletion packages/angular/src/generators/mfe-host/schema.json
Expand Up @@ -25,7 +25,7 @@
"description": "The name of the host app to attach this host app to."
},
"port": {
"type": "string",
"type": "number",
"description": "The port on which this app should be served."
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/generators/mfe-remote/schema.json
Expand Up @@ -25,7 +25,7 @@
"description": "The name of the host app to attach this remote app to."
},
"port": {
"type": "string",
"type": "number",
"description": "The port on which this app should be served."
}
},
Expand Down

1 comment on commit 99d871a

@vercel
Copy link

@vercel vercel bot commented on 99d871a Mar 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.