Kyle Smith

Results 34 comments of Kyle Smith

Bump to keep this alive 🙏

for reference: ``` ❯ npm view fast-json-stable-stringify dist.tarball | xargs curl -sS | tar -tz package/package.json package/.npmignore package/README.md package/LICENSE package/index.js package/.travis.yml package/.eslintrc.yml package/benchmark/index.js package/benchmark/test.json package/example/key_cmp.js package/example/nested.js package/example/str.js package/example/value_cmp.js package/test/cmp.js package/test/nested.js...

just touching base, @epoberezkin, to let you know that I worked a small PR to address these concerns: #4. please let me know if there's anything else I can do!...

demonstrating effects of change: ``` ❯ git branch * master reduce-package-tarball-size ❯ git clean -fd ❯ npm pack npm notice npm notice 📦 [email protected] npm notice === Tarball Contents ===...

@epoberezkin per discussion in #2, this PR configures the `files` property in `package.json` to exclude unwanted files from the package tarball. Whenever you have a chance, this is ready for...

heya @epoberezkin, just checking in --please let me know if there's anything else I can do to help land this. thanks!

This is broken for us as well: ``` Traceback (most recent call last): File "/app/.venv/lib/python3.12/site-packages/graphql/execution/execute.py", line 528, in await_result return_type, field_nodes, info, path, await result ^^^^^^^^^^^^ File "/app/.venv/lib/python3.12/site-packages/sentry_sdk/integrations/strawberry.py", line 254,...

I was just able to isolate to _an_ underlying cause but not sure if it covers all cases. We use a mix of sync and async resolvers and I had...

Aha, I think this is an ordering issue. https://github.com/getsentry/sentry-python/blob/2.14.0/sentry_sdk/integrations/strawberry.py#L108-L121 ```python # remove the built in strawberry sentry extension, if present extensions = [ extension for extension in extensions if extension...

It's not _quite_ the same, but if you're just looking to get up and running quickly, you could try our starter: https://github.com/hominyai/hatchet-starter ``` git clone https://github.com/hominyai/hatchet-starter.git hatchet-starter && cd $_...