ILYA

Results 7 comments of ILYA

In my case it ruins everything. I am using `css-modules/compose`. Something like that: common.css: ```css .common { background-color: yellow; } ``` 1.css: ```css .selector1 { composes: common from 'common.css'; background-color:...

My case https://github.com/webpack-contrib/style-loader/issues/450#issuecomment-569104644 looks like is solved. Will test it additionally. Thank U!

Possibly better approach would be total removing "locals" from "injectType" examples and create dedicated subsection about it?

Probably you are importing entire all module: ```js import * as styles from './styles.css' ``` instead of importing default: ```js import styles from './styles.css' ``` After building `styles[selector]` will work...

Currently i'm solving this issue something like this: // parent.vue ```vue export default { // ... i18n: { // ... } } ``` // child.vue ```vue export default child {...

I have just tried on MacBook Pro 2019 with six core i7 + macOS Ventura 13.1 v16.19.0, v18.14.0, v19.6.0 - all versions loads only 6 cores.

@wessberg is it possible to support `moduleResolution: node16` or `moduleResolution: nodenext` instead of forced `moduleResolution: node`?