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(node): set x-dropdown in app generator to enable autocomplete in console #19105

Merged
merged 2 commits into from
Sep 14, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/generated/packages/node/generators/application.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
"frontendProject": {
"type": "string",
"description": "Frontend project that needs to access this application. This sets up proxy configuration.",
"x-priority": "important"
"x-priority": "important",
"x-dropdown": "projects"
},
"swcJest": {
"type": "boolean",
Expand Down
3 changes: 2 additions & 1 deletion docs/generated/packages/node/generators/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"directory": {
"type": "string",
"description": "A directory where the lib is placed",
"alias": "dir"
"alias": "dir",
"x-priority": "important"
},
"projectNameAndRootFormat": {
"description": "Whether to generate the project name and root directory as provided (`as-provided`) or generate them composing their values and taking the configured layout into account (`derived`).",
Expand Down
3 changes: 2 additions & 1 deletion packages/node/src/generators/application/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
"frontendProject": {
"type": "string",
"description": "Frontend project that needs to access this application. This sets up proxy configuration.",
"x-priority": "important"
"x-priority": "important",
"x-dropdown": "projects"
},
"swcJest": {
"type": "boolean",
Expand Down
3 changes: 2 additions & 1 deletion packages/node/src/generators/library/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"directory": {
"type": "string",
"description": "A directory where the lib is placed",
"alias": "dir"
"alias": "dir",
"x-priority": "important"
},
"projectNameAndRootFormat": {
"description": "Whether to generate the project name and root directory as provided (`as-provided`) or generate them composing their values and taking the configured layout into account (`derived`).",
Expand Down