Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(angular): change mfe schema port type to number #9420

Merged
merged 1 commit into from Mar 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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