rushxSpec top-level property
Completion spec for rushx CLI
Implementation
final FigSpec rushxSpec = FigSpec(
name: 'rushx',
description: 'Run arbitrary package scripts for rush project. analogous to npm run',
args: [
Arg(
name: 'Scripts',
description: 'Script to run from your package.json',
filterStrategy: 'fuzzy'
)
],
options: [
Option(
name: ['-h', '--help'],
description: 'Show this help message and exit'
),
Option(
name: ['-q', '--quiet'],
description: 'Hide rushx startup information'
)
]
);