John L. Armstrong IV
John L. Armstrong IV
I made the changes to calculate the warcHeaders { "Content-Type": "mime/type" } on each of my resources. I also tried removing my resources, but both The Unarchiver and jwattools still...
Finally found a way to have automatic polyfills: Use [`inject`](https://github.com/mswjs/msw/blob/main/tsup.config.ts#L54) with a separate [polyfills file](https://github.com/mswjs/msw/blob/main/config/polyfills-node.ts)
It’s possible, just not pretty 😂 working on a promising proof of concept https://www.npmjs.com/package/create-vercel-http-server-handler and example project https://github.com/jlarmstrongiv/next-with-nest-graphql
Unfortunately, the import is still broken in the latest [`[email protected]`](https://www.npmjs.com/package/aws-edge-locations) ``` npx esno packages/core/src/logs/jsonHandlerDemo.ts /Users/user/Desktop/projects/project/packages/core/src/logs/jsonHandler.ts:12 const awsEdgeLocations = new AWSEdgeLocations(); ^ TypeError: AWSEdgeLocations is not a constructor at (/Users/user/Desktop/projects/project/packages/core/src/logs/jsonHandler.ts:12:26) Node.js...
Using `chmod -R u+x node_modules/electron-color-picker/library` worked, but that seems like a hack
Consider running an initialization with [shell](https://www.npmjs.com/package/shelljs#chmodoptions-symbolic_mode-file) chmod, similar to [IBM-Design/Color-Bee](https://github.com/IBM-Design/color-bee/blob/5341f1830cdfe82defab4d01a48c2aa1aa4f9453/index.js#L103)
My only suggestion is to use a stricter permission than 777, but sounds great! 👍perhaps [755](https://stackoverflow.com/a/19547462)
### Electron Builder It would be great to include instructions for `electron-builder` as well. I’ve been pouring over their documentation, and I’m not quite sure which configuration is best. -...
Thank you @ThatBean 👍 that explanation helped a lot. I’m moving into a new house this month, so all my free time is put into packing everything and collecting legal...
Thank you @userquin! That’s extremely helpful. I really like how your example supports [dark mode](https://github.com/elk-zone/elk/blob/12eaae6bbbcc6c6e7a4ceefe3941ec29ff409110/composables/setups.ts#L59) and is [excluded](https://github.com/elk-zone/elk/blob/12eaae6bbbcc6c6e7a4ceefe3941ec29ff409110/service-worker/sw.ts#L48) from the service worker cache. Seeing the header [examples](https://github.com/elk-zone/elk/blob/main/modules/pwa/index.ts#L209) is helpful too.