Sam Martin

Results 12 comments of Sam Martin

@SunYatong Hi, when is model persistence approximated to be ready?

For me, the issue was that the middleware was being applied to my `/ws` (custom websocket) endpoint. I don't need any middleware on that endpoint, so adding this to `middleware.ts`...

Alright! For now [tsc-alias](https://www.npmjs.com/package/tsc-alias) seems to do the trick (with the `resolveFullPaths` option). Can circle back here if it doesn't work out

@mcollina I've created a PR to address this issue as the global DOM typings appearing in our node service were misleading

Hello @ThomasAribart Here's a repro: https://codesandbox.io/p/sandbox/typescript-playground-export-forked-ctx886 I'm guessing the issue is that `{ transform: ['trim'] }` doesn't contain any other properties to qualify it as a JSON Schema. If `type:...

Sorry, old output from when I tested with options. Updated

Thanks for the quick debug. Will give it a go

That workaround allowed me to complete my integration testing suite and finally deploy my project. Thanks again!

After upgrading to Node 22, `corepack enable` stopped working: ```bash Internal Error: EACCES: permission denied, symlink '../lib/node_modules/corepack/dist/pnpm.js' -> '/opt/actions-runner/_work/_tool/node/22.11.0/x64/bin/pnpm' at async Object.symlink (node:internal/fs/promises:1001:10) at async EnableCommand.generatePosixLink (/opt/actions-runner/_work/_tool/node/22.[11](https://github.com/creditornot/converse-services/actions/runs/11659651461/job/32460569908#step:8:12).0/x64/lib/node_modules/corepack/dist/lib/corepack.cjs:22608:5) at async Promise.all...

We ran into this issue after upgrading from 5.21 -> 5.30, without any explicit userland code interacting with `DatadogSpanContext` Downgraded to 5.24 after reading this thread and now the issue...