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 authored and FrozenPandaz committed Mar 21, 2022
1 parent b380597 commit d614434
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

0 comments on commit d614434

Please sign in to comment.