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
It would be nice to build this as part of a more comprehensive build mode system, with possible developer access. Having a "qa" build mode would be nice, and not having to hard-code all the build modes would also be nice. =)
The text was updated successfully, but these errors were encountered:
I would be in favor of not exposing support for simultaneous modes. I believe currently mode can be controlled by a command-line flag, but you can only specify one mode.
Having ad hoc support for //@if(any_mode) would be great (although it'll inevitably get misused...).
Reason I mention multiple modes is that instead of the entire multi-lang support with complicated folder structures, we could do the multilang support with
//@if(en)
//@endif(en)
After some thinking, I don't think it is very complicated. The model for parsing this would be similar to the
I don't think localization is an appropriate use case for modes. Localization folders include css and images along with strings; it makes a lot of sense to keep everything together in that folder.
In abbot, if you wrap code in:
then it will be removed if not in debug mode.
It would be nice to build this as part of a more comprehensive build mode system, with possible developer access. Having a "qa" build mode would be nice, and not having to hard-code all the build modes would also be nice. =)
The text was updated successfully, but these errors were encountered: