You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'The transform(s) to run, will prompt for a transform if not provided and no module is passed\nTo provide multiple transforms, separate them with commas (e.g. "-t t1,t2,t3")',
20
-
)
21
20
.option(
22
21
'--packages <value>',
23
22
'Comma separated list of packages to run transforms for, @scope/package[@version]. If version is supplied, will only run transforms for that version and above',
@@ -26,6 +25,10 @@ program
26
25
'-s, --sequence',
27
26
'If the package flag is provided, runs all transforms from the provided version to the latest',
28
27
)
28
+
.option(
29
+
'-t, --transform <value>',
30
+
'The transform(s) to run, will prompt for a transform if not provided and no module is passed\nTo provide multiple transforms, separate them with commas (e.g. "-t t1,t2,t3")',
31
+
)
29
32
.addOption(
30
33
newOption(
31
34
'-p, --parser <parser>',
@@ -54,20 +57,30 @@ program
54
57
`
55
58
Examples:
56
59
# Run a transform for "@mylib/button" version 3.0.0 only
0 commit comments