Dylan Markow
Dylan Markow
@Yarkhan I'm using Expo 43 on a bare project with expo-modules and it compiles fine. At least for me, it's only upgrading to Expo 44 that breaks it.
Can confirm on the latest 2.1.6 release. I had multiple `` elements with ZeroClipboard links in them, jumping from one to the next in Chrome wasn't properly triggering the events....
The issue is that `exit-hook` package doesn't support async code ([yet](https://github.com/sindresorhus/exit-hook/pull/20)), so as soon as `resolve` is called the process exits without waiting for the `then` block to execute. https://github.com/remix-run/remix/blob/15213866f8dca94e6164c46028f410625226599f/packages/remix-dev/cli/commands.ts#L226-L237
Ran into the same issue (I actually created that issue over there). `@web3-storage`'s header handling is pretty basic. I haven't had time to open a proper PR on this repo...
Getting this constantly on a large app, seems like after a couple save/LiveReload cycles, it blows up. In active development, it's happening every 5-10 minutes. Setting `NODE_OPTIONS="--max-old-space-size=8192"` seems to have...
@kiliman Using your LiveReload / express server updates definitely helps. One small issue I found is you can get a stale page in development if this happens: - Load a...
So if you use `remix dev` instead of a separate express server, purging it during the rebuild is pretty easy. Just move the purge call from https://github.com/remix-run/remix/blob/main/packages/remix-dev/cli/commands.ts#L271 to right before...
This is due to https://github.com/remix-run/remix/blob/main/packages/remix-dev/config/routesConvention.ts#L214 using `fs.lstatSync`: ```ts function visitFiles( dir: string, visitor: (file: string) => void, baseDir = dir ): void { for (let filename of fs.readdirSync(dir)) { let...
@machour My git rebasing skills are apparently trash 😅 Rebasing my local branch against dev is still keeping all of main's recent commits as well, and changing the base branch...
@machour Nevermind, figured out `rebase --onto` right after I replied. It should be ready to go now.