Skip to content

Commit

Permalink
feat: support dep-graph watch option (#1106)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandikbarr authored Jul 2, 2021
1 parent d97db50 commit 5e78c4d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libs/vscode/tasks/src/lib/nx-task-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,11 @@ const RUN_MANY_OPTIONS: Option[] = [
].map((v) => ({ ...v, aliases: [] }));

const DEP_GRAPH_OPTIONS: Option[] = [
{
name: 'watch',
type: OptionType.Boolean,
description: 'Watch for changes to dep graph and update in-browser',
},
{
name: 'file',
type: OptionType.String,
Expand Down

0 comments on commit 5e78c4d

Please sign in to comment.