Skip to content

Commit

Permalink
fixup! Introduce the @rushstack/rush-buildxl-graph-plugin plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
iclanton committed Feb 11, 2025
1 parent 4da492e commit 7c84a3b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export class DropBuildGraphPlugin implements IRushPlugin {
public readonly pluginName: string = PLUGIN_NAME;

public apply(session: RushSession, rushConfiguration: RushConfiguration): void {
// TODO: Introduce an API to allow plugins to register command line options
// TODO: Introduce an API to allow plugins to register command line options for arbitrary, existing commands
// in a repo
const dropIndex: number = process.argv.indexOf(DROP_GRAPH_FLAG_NAME);
const dropGraphPath: string | undefined = dropIndex > -1 ? process.argv[dropIndex + 1] : undefined;

Expand Down

0 comments on commit 7c84a3b

Please sign in to comment.