Jim Jeffers
Jim Jeffers
I am experiencing this behavior as well.
Hmm I'm noticing my bundle is huge due to font awesome. It seems the entire lib is importing even though I'm only importing a few dozen icons using the explicit...
Thanks for getting back to me. I could adjust the project to use deep imports if I have to that just seems like a big hassle so hopefully I can...
Also worth noting is that the CRA projects are importing a `ui` package which as a library of shared components and this package also uses font-awesome/react-fonteawsome. Perhaps that is why...
Just following up on this one guys. It turns out the other packages in my monorepo were compiling with "CommonJS" which doesn't support tree shaking. I changed the "module" setting...
@fullhdpixel I just set the `"module"` attribute in my **tsconfig.json** to compile my sibling packages as ES6 instead of commonJS. It's been a few years so your mileage may vary...
@kjersten amazing!
Here is an example of what's happening in my specs. All of my specs that return a 200 response have the correct headers. For example this spec passes: ```ruby it...
Sure. Is there a specific set of specs I should look at when writing one for the library to test this? Let me know and I will work on a...
@dblock you know it looks like this must just be an issue with 1.3.3. I upgraded to 1.4 by installing directly from master and my specs pass when I use...