Anders Ekdahl

Results 14 comments of Anders Ekdahl

I think this is very important for this proposal because - like you said - making it immutable all the way enables transfer/sharing between threads, and that's a huge win....

@AsaAyers Symbols themselves are immutable in that you cannot assign new properties on them like: ``` var mySymbol = Symbol('test'); mySymbol.x = 'z'; console.log(mySymbol.x); // logs 'undefined' ``` But all...

As much as I'd like to be able to do avoid using `.get` and `.set`, I think that it's quite important to be able to polyfill this feature. Even though...

Can't give you the repo since it's private unfortunately, but what we have is for example a directory structure like this: ``` /Features /Features/MyFeature/ /Features/MyFeature/MyFile.scss /Styles /Styles/objects.scss ``` Then we...

Thanks! Another option for us since we use Webpack is to be able to tell `typed-css-modules` to ignore references inside a file since Webpack will handle that for us.

Just tried the new release, and the errors are gone which is nice. But it seems that no `*.d.ts` is created for the files containing a `composes` that `typed-css-modules` can't...

Thanks for the quick reply! I'll dig a little deeper to see if the error is on my side.

I've tracked down the issue and created another issue about it: #5

I've been having the same issue of everything working on build but nothing happens during watch mode. I've been able to localize it to this line for webpack5: https://github.com/sysgears/webpack-virtual-modules/blob/c45595835906a201f9441a2f3c9d688f5689767c/src/index.ts#L165 All...

Hi! Thanks for the answers! Sure, IIS will use all cores but since you have a single, static V8 instance all cores will be talking to the same engine (and...