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
We remove the usage of SOME_FLAG, but leave the import statement. This forces us to also emit a blah/features module even if we never have runtime enableable features.
IMO, we should remove imports if they are no longer used...
The text was updated successfully, but these errors were encountered:
@krisselden - Only if there are runtime features. If all features are stripped (e.g. they were all true or false, and none are null) the module is not needed at all.
Currently, given:
With this config:
We remove the usage of
SOME_FLAG
, but leave the import statement. This forces us to also emit ablah/features
module even if we never have runtime enableable features.IMO, we should remove imports if they are no longer used...
The text was updated successfully, but these errors were encountered: