given some css like this: ``` css .base { composes: inline-block from '../styles.css'; color: red; } ``` .babelrc like this: ``` javascript "plugins": [ ["css-modules-transform", { "generateScopedName": "test_[name]__[local]" }] ] ``` the plugin outputs this: ``` javascript var _button = { 'base': 'test_component__base undefined', } ```