Ray Gesualdo
Ray Gesualdo
> Some information in the reflections isn't reflected in the JSON output. Can you expound on this @Gerrit0? I was planning on using the JSON output to build a simple...
Thanks for the clarification!
I'm also trying to use `@swc/jest` with the plugin from `@formatjs/swc-plugin`. Looking at [the code](https://github.com/swc-project/jest/blob/master/index.ts#L17), the `plugin` option should be passed straight through to `transformSync`, but it doesn't seem to...
That worked for me! Running into issues with how we've written our tests now unrelated to SWC ðŸ˜
Sounds great! Another idea I had was to allow `deps` to also be a function (which is passed `getState` and `action`) that returns an object. That way there's no need...
One thing we're going to have to consider is that some middleware will need to be chained (modifying the response after it's been transformed to JSON or text) and others...
Piggybacking off of #17, we could add a property `responseType` with only two valid values (`text` and `json`) that handles the parsing of the response accordingly. ```javascript import { partial...
I tried to implement this in a large Webpack project. Running with `telemetry: false` works well and doesn't slow the build times at all (I benchmarked using hyperfine). Running it...
Build duration is my primary concern, but top-level counts are helpful as well. Here's what my `filter` array was: ```js filters: [ ...helpers.telemetry.filters, (metric) => { if ( metric.metric ===...
@yoannmoinet saw #86 got merged. Any word on when this might make it in?