We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running the init command with a port specified firectly, I get the following error:
Property 'port' does not match the schema. '3000' should be a 'string'.
Repro example: ng g @angular-architects/module-federation:init --project my-app --port 3000
ng g @angular-architects/module-federation:init --project my-app --port 3000
Entering "3000" with quotation marks does not help either (same error).
Workarounds: Specify the port interactively (don't pass --port at all) or pass "3000a". Seems to work (the "a" is discarded during parsing to an int).
Suggestion: Change the schema to accept a number.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When running the init command with a port specified firectly, I get the following error:
Property 'port' does not match the schema. '3000' should be a 'string'.
Repro example:
ng g @angular-architects/module-federation:init --project my-app --port 3000
Entering "3000" with quotation marks does not help either (same error).
Workarounds: Specify the port interactively (don't pass --port at all) or pass "3000a". Seems to work (the "a" is discarded during parsing to an int).
Suggestion: Change the schema to accept a number.
The text was updated successfully, but these errors were encountered: