Renée

Results 502 comments of Renée

This is most likely because default imports get wrapped in a `_interopDefault` function call by Babel. `common-shake` does not know what this function does (it could do anything) so it...

Some of Babel's module transform output may be tripping up common-shake. Could you share an example that shows it failing?

Thanks @retail-robot! `this` is really hard to make work correctly in all situations, but that particular case should not be too difficult to support.

Sorry I missed this. The reason for this is that common-shake doesn't know that the `Storage.prototype` assignment is related to the `exports.Storage` export. I don't think that'll be easy to...

Browserify internally dedupes modules: if there are two identical files in the build, it will replace one of them with a stub that references the other. For tree shaking, this...

> I can remove it by editing my code (..) but I feel like it shouldn't be the way to go. I agree. I basically thought it couldn't fail, which...

Sounds like a bug in https://github.com/stackcss/postcss-prefix

This line: https://github.com/stackcss/postcss-prefix/blob/e8fc6d9e48348e7270881a63ce721f9ac06a9bad/index.js#L25-L26 I think before `:host` was used, selectors were prefixed by default, maybe this is a leftover from that? I wasn't using sheetify back then

maybe we can do something like this in the output: ```js require('sheetify/insert')('css text', 'hash of css text') ``` and not insert duplicate hashes (could the prefix be used that way?)....

@zaoqi > What to implement in Node.JS? This module is a port of Node.js's `assert` module for other engines. If you want to add a feature, it should be done...