We use ember-css-modules in our Ember app, and it's a great addon. Thanks for making it!
I tried running the ember-component-template-colocation-migrator on our codebase. The codemod moved our .hbs files from app/templates/components to app/components as intended. However, our CSS module files are still in the app/styles directory. Ideally we'd have these colocated in app/components alongside the .js and .hbs files.
Has anyone encountered this problem before? I'm wondering if there is a codemod that I could use to move our .css files into app/components? If not, I may have to write one myself.
We use ember-css-modules in our Ember app, and it's a great addon. Thanks for making it!
I tried running the ember-component-template-colocation-migrator on our codebase. The codemod moved our
.hbsfiles fromapp/templates/componentstoapp/componentsas intended. However, our CSS module files are still in theapp/stylesdirectory. Ideally we'd have these colocated inapp/componentsalongside the.jsand.hbsfiles.Has anyone encountered this problem before? I'm wondering if there is a codemod that I could use to move our
.cssfiles intoapp/components? If not, I may have to write one myself.