Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f19c5df

Browse files
vsavkinFrozenPandaz
authored andcommittedSep 11, 2020
feat(core): add scan to list of supported flags
1 parent 52c9bc7 commit f19c5df

File tree

1 file changed

+2
-0
lines changed
  • packages/workspace/src/command-line

1 file changed

+2
-0
lines changed
 

Diff for: ‎packages/workspace/src/command-line/utils.ts

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const runOne = [
2222
'with-deps',
2323
'skipNxCache',
2424
'skip-nx-cache',
25+
'scan',
2526
];
2627

2728
const runMany = [...runOne, 'projects', 'quiet', 'all'];
@@ -70,6 +71,7 @@ export interface NxArgs {
7071
select?: string;
7172
skipNxCache?: boolean;
7273
'skip-nx-cache'?: boolean;
74+
scan?: boolean;
7375
}
7476

7577
const ignoreArgs = ['$0', '_'];

0 commit comments

Comments
 (0)
Please sign in to comment.