-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Clean up feature flags source files #6098
Labels
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
in-progress
This issue is being actively worked on.
Comments
Added myself so I can make sure the right link gets into the Dev Guide once this is finalized. |
eladb
pushed a commit
that referenced
this issue
Feb 9, 2020
Clean up features.ts such that it will include only things related to feature flags in order to make it easier for users to discover and add feature flags in one place. Merged it with the contents of `future.ts` and updates contribution guide to that end. The other context keys that were in `feature.ts` were not actually feature flags but rather application switches, so these were moved to `app.ts`. Fixes #6098
PR in: #6181 |
eladb
added
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
labels
Feb 9, 2020
@jerry-aws the link you need is |
Yes, the link is already correct. I'll clean up the wording around it a bit. Thanks! |
SomayaB
added
in-progress
This issue is being actively worked on.
and removed
needs-triage
This issue or PR still needs to be triaged.
labels
Feb 10, 2020
mergify bot
pushed a commit
that referenced
this issue
Feb 13, 2020
Clean up features.ts such that it will include only things related to feature flags in order to make it easier for users to discover and add feature flags in one place. Merged it with the contents of `future.ts` and updates contribution guide to that end. The other context keys that were in `feature.ts` were not actually feature flags but rather application switches, so these were moved to `app.ts`. Fixes #6098
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
in-progress
This issue is being actively worked on.
The files https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/cx-api/lib/future.ts and https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/cx-api/lib/features.ts together comprise a list of the currently-supported feature flags.
Problem is,
future.ts
doesn't tell you what the feature flags are actually named, whilefeatures.ts
lists things besides feature flags. Aside from being difficult for users to figure out, it makes it hard to link to a succinct list of feature flags (e.g. from the Feature Flags topic in the Developer Guide).Maybe these could be unified or otherwise cleaned up.
The text was updated successfully, but these errors were encountered: