Sumanth Chinthagunta

Results 185 comments of Sumanth Chinthagunta

is there a better syntax for this template? ```html Hallo, {{profile.name}} Hallo ```

I am happy to take PRs if you want to contribute and add you as maintainer if you are interested.

REPL https://svelte.dev/repl/8cf99db4663c4071a939497570b9b21d?version=3.2.2 not working when javascript is disabled

Until we find a permanent solution, to disable linting (red wavy underline) in VS Code, I am using below comments at top of the file. ```ts /* eslint-disable */ //...

if you have multiple providers, you also use like this `as Provider[]` ```ts export const authjs = SvelteKitAuth({ debug: dev, providers: [ Google({ clientId: envPri.GOOGLE_ID, clientSecret: envPri.GOOGLE_SECRET, authorization: { params:...

Dockerfile ```Dockerfile FROM node:19-alpine as runtime # install pnpm RUN corepack enable; corepack prepare [email protected] --activate WORKDIR /app # clean install dependencies, no devDependencies, no prepare script COPY .npmrc package.json...

@ardatan sorry for the delay. here is the repo to reproduce this issue To reproduce error, run: ```shell git clone https://github.com/xmlking/graphql-mesh-specific cd graphql-mesh-specific pnpm i pnpm build pnpm start ```...

Thanks for letting me know. Will they this solution. I recall @ardatan mentioned someway disadvantage of using this way for accessing environment variables.

thanks @denvaki but I want `const valid_to =""` treated same like ` valid_to = null;` ie., `valid_to= ""; schema.parse(valid_to) == null` Reason: I get [FormData](https://developer.mozilla.org/en-US/docs/Web/API/FormData) on the server side, form...

Wish we have built-in `z.nuller` like `z.coerce` `z.nuller.string().datetime({ offset: true }).nullish()` My reusable solution: ```ts export function emptyToNull(arg: unknown) { if (typeof arg !== 'string') { return arg; } if...