Skip to content

Commit

Permalink
chore(misc): add x-priority for nx package executors (#14292)
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder authored Jan 26, 2023
1 parent d5332b4 commit c7cc2c8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
12 changes: 8 additions & 4 deletions docs/generated/packages/nx/executors/run-commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,19 @@
},
{ "type": "string" }
]
}
},
"x-priority": "important"
},
"command": {
"type": "string",
"description": "Command to run in child process."
"description": "Command to run in child process.",
"x-priority": "important"
},
"parallel": {
"type": "boolean",
"description": "Run commands in parallel.",
"default": true
"default": true,
"x-priority": "important"
},
"readyWhen": {
"type": "string",
Expand Down Expand Up @@ -115,7 +118,8 @@
"hidden": true,
"type": "array",
"items": { "type": "string" },
"$default": { "$source": "unparsed" }
"$default": { "$source": "unparsed" },
"x-priority": "internal"
}
},
"additionalProperties": true,
Expand Down
3 changes: 2 additions & 1 deletion docs/generated/packages/nx/executors/run-script.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"hidden": true,
"type": "array",
"items": { "type": "string" },
"$default": { "$source": "unparsed" }
"$default": { "$source": "unparsed" },
"x-priority": "internal"
}
},
"additionalProperties": true,
Expand Down
12 changes: 8 additions & 4 deletions packages/nx/src/executors/run-commands/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,19 @@
"type": "string"
}
]
}
},
"x-priority": "important"
},
"command": {
"type": "string",
"description": "Command to run in child process."
"description": "Command to run in child process.",
"x-priority": "important"
},
"parallel": {
"type": "boolean",
"description": "Run commands in parallel.",
"default": true
"default": true,
"x-priority": "important"
},
"readyWhen": {
"type": "string",
Expand Down Expand Up @@ -134,7 +137,8 @@
},
"$default": {
"$source": "unparsed"
}
},
"x-priority": "internal"
}
},
"additionalProperties": true,
Expand Down
3 changes: 2 additions & 1 deletion packages/nx/src/executors/run-script/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
},
"$default": {
"$source": "unparsed"
}
},
"x-priority": "internal"
}
},
"additionalProperties": true,
Expand Down

1 comment on commit c7cc2c8

@vercel
Copy link

@vercel vercel bot commented on c7cc2c8 Jan 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx-dev-nrwl.vercel.app
nx.dev

Please sign in to comment.