Replies: 1 comment
-
different UX idea now ... let's just support |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
we currently support
--package
,--ignore-pre-version
and--skip
, which are explicit but also confusing.I'd like to trim this down to
--include=
and--exclude
and make them more flexible and explicit by defining what they should match on (likename
,versions
orversion.pre
) and how they should match (=
– matches/contains;==
– exact match;=^
– starts with;=$
– ends with and if beginning with!
negates the matching). It would also be awesome to allow them to be grouped, where within each group at least one must match and it must match each group. Example--include name!=^node|name!=test|name!==chain-spec|name!=-wasm --include version.pre!=^dev
would match any that isn't named any as the first (see negations) AND is NOT having apre-version
starting withdev
Acceptance criteria:
cli
-help-p
/--package
Beta Was this translation helpful? Give feedback.
All reactions