Will Lutz

Results 15 comments of Will Lutz

This is going to sound wild, but removing an underscore from my script's file name solved the problem for me.

I'd love to see the README cover or link to how to customize some of the style with little tweaks. I like Google style except for bracket spacing. I just...

Im in the same spot using serverless-esbuild. Where did you put this? ``` package: { individually: true, patterns: [ '!node_modules/.prisma/client/libquery_engine-*', '!node_modules/@prisma/engines/**', 'node_modules/.prisma/client/schema.prisma', // 'node_modules/.prisma/client/libquery_engine-rhel-*', ], }, ```

I've only ever seen serverless.yml - so it took my brain a minute to figure it out [crrobinson14](https://github.com/crrobinson14), but I got it. And it's working! Thanks.

Interesting. I tried to run all of the actual dates through MomentJS to deal with that sort of thing - for reasons I don't understand JS seems to just be...

@eyalabadi98 - OK got it. It sounds like a speed issue. I did use some hacky/brute force techniques when building so I could get it out faster. First: disclaimer -...

I use moment-range to manage appointment overlapping in the View (ProcRows - line 7). I'm pretty sure that's the only time I used it. The right answer is to make...

Ok, slightly more complicated than that, but I can work on it tonight.

@eyalabadi98 - I refactored to remove moment-range as well as moment as many places as I could - reverting to JS' native date. Hopefully that improves the speed. Can you...