Sebastian Werner

Results 51 comments of Sebastian Werner

Testing like ```babel --presets es2015,react --plugins log-deprecated test.js``` Output: ```js /** * @deprecated */ function oldMethod() { console.warn("Deprecated: Function \"oldMethod\" is deprecated in test.js on line 4", { functionName: "oldMethod",...

Interestingly this is broken without the ES2015 preset as well. Okay probably there is just missing support for classes in general: `babel --plugins log-deprecated --presets react test.js` Output: ```js /**...

Hi! I know this is not a fully valid bug report. Still it seems that updating from v11.10.1 to v11.10.2 breaks in our application. I receive the error: `Cannot read...

Seems to be related to: ```js var isIgnoringComment = function isIgnoringComment(element) { return element.type === 'comm' && element.children.indexOf(ignoreFlag) > -1; }; ``` which can be fixed using: ```js var isIgnoringComment...

The code involved producing the issue is: ``` terminatedContract: { '& .contractIcon, tr:nth-child(1) td:nth-child(1), tr:nth-child(n+2) td': { opacity: 0.4 } } ``` I guess it's related to the multiple usage...

The link is now a 404... was the project moved/discontinued?

I think a first step would probably to share what you have made... was just wondering where it is... I can move this on into my hands, but I do...

Thanks! Alternatively it would help to have some simple babel plugin which removes `import()` from server side code and replaces it with `require().default` or so... We don't need code splitting...

Interestingly `webpack.optimize.LimitChunkCountPlugin` does not seem to affect `import()`s. Otherwise that would be a nice thing for server side bundling.

Okay my previous statement was wrong. It works. Just make sure to use `maxChunks` != 0 which does not work. With `maxChunks = 1` I effectively can disable all import-based...