-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for a list of included modules (currently only excluded) #702
Comments
Ah looks like this is already a mentioned proposal in #451 |
I can envision the general use case but do you mind explaining your personal use case? Doing so can help us better understand how folks use this tool. But aside from that, I agree that this configuration option would be very helpful. Auth0 is constantly expanding its product offerings so its expected to be constantly updating an exclude list. The key is to clearly distinguish from This is something I expect us to deliver eventually, but cannot commit to specific timeframe. |
We are looking to use a separate directory/monorepo package to build and deploy the login and error pages for auth0 aside from our standard auth0 configuration files with an eye toward splitting more configuration to other packages. Unfortunately that requires us to manually exclude the correct modules in each package instead of specifying which modules should be included.
|
I would love to have the |
Good news! We've added this functionality in the 7.16.0 release via the Personally, this is something I've always wanted to add because it makes the tool easier to test. So thanks for the suggestion, it was the nudge we needed! |
Checklist
Describe the problem you'd like to have solved
Currently the CLI tool only allows for an
AUTH0_EXCLUDED
list of modules, which means that splitting the config across multiple packages (e.g. when thepages
are compiled and uploaded separately) requires enumerating the entire list of other modules to exclude. Instead it would be nice to have the ability to only include the pages module in this instance.Describe the ideal solution
a new config option for
AUTH0_INCLUDED
is available that allows users of the CLI to specify a list of modules that will be processed for export/import.Alternatives and current workarounds
Current workaround is to enumerate the entire list of modules and exclude the ones that are not relevant to the package.
Additional context
No response
The text was updated successfully, but these errors were encountered: