Identify multiple namespaces/components as internal #1720
Unanswered
iamrahul127
asked this question in
Q&A
Replies: 2 comments 3 replies
-
Can someone please help? |
Beta Was this translation helpful? Give feedback.
0 replies
-
You need one regex that matches all your cases, you cannot provide lists of regexes. Use sites like https://regex101.com/ to test your regex (make sure to select Java 8 in the Flavor section to the left). In fact, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We would like to mark our own nuget & npm packages as internal. Managed to identify nuget packages using
'.*education.*
regex but not able to do it for npm packages which has@education
as group.Regex I tried is =>
.*education.*','.*@education.*'
What am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions