Tal500

Results 82 comments of Tal500

This issue was happen also to me in my development. I think that the reason for the trouble is that using `let` in a nested component which is also a...

I also want this feature in Svelte. Currently, I think that the only "Svelte way" to do this is by firing an event whenever the value changes. Additionally, there are...

Agree. Also for me, JEST fails at the second line, a proof for this issue: ```ts expect(getTimezoneOffset('Asia/Jerusalem', new Date('1995-12-17T03:23:00Z'))).toBe(2 * 60 * 60 * 1000); expect(zonedTimeToUtc(new Date('1995-12-17T03:23:00Z'), 'Asia/Jerusalem')).not.toEqual(new Date('1995-12-17T03:23:00Z')); ```

As a temporary fix, here is my implementation to these function, using the offset function of this library: ```ts import { getTimezoneOffset } from 'date-fns-tz'; export function utcToZonedTime(date: Date |...

> PR seems to have failed docs deploy... How the docs are generated? I didn't see any Github action here

I think Netlify fails because it uses old Node.js version. See in https://app.netlify.com/sites/svelte-file-dropzone/deploys/62f24201903fd400087f9dc3#L64-L84: ``` 2:17:42 PM: [svelte-preprocess] Don't forget to install the preprocessors packages that will be used: node-sass/sass, stylus,...

> Wow..this is awesome. Thanks for creating PR. I will look into this before Sunday. > > > I think Netlify fails because it uses old Node.js version. See in...

> Renaming to ts means REPL support is gone. I would rather prefer typedefs. > > Check [dasDaniel/svelte-table#97](https://github.com/dasDaniel/svelte-table/pull/97) . They reverted from typescript recently. I feel like I need to...

> Also don't see much of advantage with vite over rollup except probably a friendly config. Vite internally uses rollup for prod build. I used Vite for two reasons: 1....

> > When Svelte compiles your code, it first preprocess your components (via svelte-preprocess), and then compiles your components to JS. The former step include compiling TS to JS and...