Eric Clemmons
Eric Clemmons
I'm amazed that tests still pass with this change! It must be due to Grunt's internal normalizing of `files` or whatever.
I'm not sure about this one, particularly since I haven't heard of the issue nor experienced it. Any idea on why this was an issue?
"today" :D As a fellow OSS author, I know how off time estimates can be. (great work on https://github.com/fcomb/redux-logger btw)
Diff stuff is hard :) There are two libs that I've referenced for solving this problem: 1. https://github.com/benjamine/jsondiffpatch 2. https://github.com/flitbit/diff Hopefully one of those may help!
Do we have any ideas how to work around this with SB 7? I've tried several things on my end, but they've all failed. Local addons are still _parsed_ (I'm...
I tried hard to make https://parceljs.org/ work, but the reality is that server-rendering this is easy (done!), but Parcel makes it very difficult to do a server+client build. ```diff diff...
The bad news with this approach is that the intelligent usage of layouts & components would go away. The good news is, this could possibly be an example in the...
I did this as a Next.js app, but the JS payload was huge and creating `` within a `getInitialProps` isn't JS-serializeable, so it doesn't work. I think the next step...
Just ran into this need myself. Seems like a zod-like thing's needed here. I need to both validate _and_ normalize `my-cli --folder=./does-not-exist` 1. Validation to ensure the folder exists (though...
Thank y'all so much for this! This is perfect ❤️