You could write an extension on translate that would fix it, however it
won't work with ES6 syntax. If you're just using steal syntax it would
probably work. Untested but it would be something like this:
- var loaderTranslate = System.translate;
- System.translate = function(name, parentName, parentAddress) {
- if(name.indexOf('.css') > 0) {
- name = name + "!";
- }
-
- return loaderTranslate.call(this, name, parentName, parentAddress);
- };
Something like that, play around with it.