Stef

Results 24 comments of Stef

@SrBrahma I am using [nodemon](https://www.npmjs.com/package/nodemon) to watch the dist directory, and then [npm-run-all](https://www.npmjs.com/package/npm-run-all) (run-p) to run this in parallel with build: ```json "dev": "run-p build:server:watch start:watch", "build:server:watch": "swc server --config-file...

Here's a handful of edge cases: - https://github.com/stefee/frogs/blob/17fd3fb230e2b284a348ccfe5966b2a445dc36f1/package.json - https://github.com/stefee/stef-choo/blob/e7a9797073f89497263f9ec8d8fcd2fa565e5281/package.json - https://github.com/stefee/stef/blob/816634b930333795b460103b52ebad287a736065/package.json - This one contains some private org packages so expect it to 403: https://github.com/CondeNast/gwa-atjson-playground/blob/1cfab029357e399378ef886e40d55f6c15d0a596/package.json Some libraries: - https://github.com/conde-nast-international/bundlesize/blob/36dcf48721c0cdfa7b4927d8d20c948a4afde8a4/package.json...

It seems the issue is swc is not reading `sourceMaps` boolean value correctly from `.swcrc` - only `"inline"` has effect, but not `true` or `false` - sourcemaps will always be...

I haven't had time to investigate this yet but I am still seeing this bug on latest version @kdy1 - do you know the cause?

I think this might be a hard requirement for https://github.com/open-telemetry/opentelemetry-js-contrib/issues/1021 - until then I don't know if there is a workaround for Undici users other than to manually add propagation...

Thanks @MatanBobi. My understanding of ErrorBoundary is it's to handle errors thrown during the render critical path, not thrown from event callbacks. Is that not correct? Source: https://reactjs.org/docs/error-boundaries.html#how-about-event-handlers

> Once you decide not to catch it and throw it, if I'm not mistaken, it will be caught in an ErrorBoundary. This is not my understanding. If an error...

This was also explained by @eps1lon here https://github.com/testing-library/react-testing-library/issues/624#issuecomment-605105191

> The case that I think we're eager to understand is for basic static components that do things like layout and do require styling to achieve that. Do we currently...

> we are trying to understand if we can style server components The question is answered already [here](https://github.com/mui/material-ui/issues/34905#issuecomment-1330939826). > Server Components were designed in a way that is at fundamental...