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
When generating scala classes from smithy model we often need to exclude certain namespaces due to various reasons.
For that we were using --exclude-ns option in smithy4s-cli. However, recently we did some small refactoring that moved some of the shapes from the top namespace that was excluded (e.g. a.b) into sub-namespaces (e.g. a.b.c and a.b.d).
This cause issues in the generated code as those nested namespaces were not excluded.
Would it be possible to allow excluding namespaces in a more convenient way? e.g. --exclude-ns a.b.* would exclude .a.b as well as any other namespace that starts with a.b
The text was updated successfully, but these errors were encountered:
When generating scala classes from smithy model we often need to exclude certain namespaces due to various reasons.
For that we were using
--exclude-ns
option in smithy4s-cli. However, recently we did some small refactoring that moved some of the shapes from the top namespace that was excluded (e.g.a.b
) into sub-namespaces (e.g.a.b.c
anda.b.d
).This cause issues in the generated code as those nested namespaces were not excluded.
Would it be possible to allow excluding namespaces in a more convenient way? e.g.
--exclude-ns a.b.*
would exclude.a.b
as well as any other namespace that starts witha.b
The text was updated successfully, but these errors were encountered: