Do you know what's wrong with the following piece of code? it doesn't work. ``` /* style.css */ :global .globalText { color: green; } ``` ``` /* otherStyle.css */ .text { composes: globalText from global; background-color: #777; } ``` Error in compilation cussed by the _"composes:..."_ line : ``` webpack: Compiling... Error: Cannot find module "./otherStyle.css" ``` But when i comment out that line it compiles without any errors.