Skip to content

Commit

Permalink
feat(angular): add priority flags for web-worker
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Jan 12, 2023
1 parent d22405f commit a2260d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions docs/generated/packages/angular/generators/web-worker.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@
"project": {
"type": "string",
"description": "The name of the project.",
"x-dropdown": "projects"
"x-dropdown": "projects",
"x-priority": "important"
},
"name": {
"type": "string",
"description": "The name of the worker.",
"$default": { "$source": "argv", "index": 0 },
"x-prompt": "What name would you like to use for the worker?"
"x-prompt": "What name would you like to use for the worker?",
"x-priority": "important"
},
"snippet": {
"type": "boolean",
Expand All @@ -33,7 +35,8 @@
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
"default": false,
"x-priority": "internal"
}
},
"additionalProperties": false,
Expand Down
9 changes: 6 additions & 3 deletions packages/angular/src/generators/web-worker/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"project": {
"type": "string",
"description": "The name of the project.",
"x-dropdown": "projects"
"x-dropdown": "projects",
"x-priority": "important"
},
"name": {
"type": "string",
Expand All @@ -23,7 +24,8 @@
"$source": "argv",
"index": 0
},
"x-prompt": "What name would you like to use for the worker?"
"x-prompt": "What name would you like to use for the worker?",
"x-priority": "important"
},
"snippet": {
"type": "boolean",
Expand All @@ -33,7 +35,8 @@
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
"default": false,
"x-priority": "internal"
}
},
"additionalProperties": false,
Expand Down

0 comments on commit a2260d4

Please sign in to comment.