silverwind

Results 1156 comments of silverwind

Still seeing these in v3, stack traces on these errors are completely unreadable and `sourcemap` is not able to resolve those stack traces either. FTR, module that errored was [this...

Right, I see reasoning in that, preventing error logging should require more than just the existance of a boundary. Browsers allow to suppress logging uncaught errors to the console via...

Agree but I think it should also strip trailing newlines, e.g. perform a `strings.TrimSpace`, which would match the behaviour of https://github.com/dmnd/dedent.

Found a workaround for `terser`: add the `keep_fnames: /^(HTML|SVG)/` option.

> Webpack-like (CSS is generated at run-time using JavaScript) Normally, one would "extract" CSS in Webpack using [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin), which results in CSS loaded as CSS. I'm under the impression that...

This is caused a bug in Apple's SecureTransport library as described in https://github.com/curl/curl/issues/998#issuecomment-245210625. gopkg.in does not run on a dedicated IP address, so can only serve clients that support the...

`writeText` is only for text. For other formats, there is [`write`](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/write).

I guess with this API available, this module is pretty much obsolete, so one option could be to not support it, letting this module exist only as a "legacy solution".

As for testing syntax support on the server, I found this simple method: ``` js $ babel-node -e 'process.on("uncaughtException", function(){console.log("modules supported")}); import a from "b.js"' modules supported ``` In case...

Yeah, no `System` or `Reflect.Loader` available in latest Babel. Why is this so damn hard to test for :cry: