You're awesome, man! Thank you for the vids/tutorials.
@lihautan2 жыл бұрын
My pleasure!
@swattertroops-yaaa2 жыл бұрын
53:43 😂🤣
@bigboss-em2uc2 жыл бұрын
Hello hello!! 🤓Li Hau. I kown you are babel and svelte team member, and I also had read you blog about `write a custom babel plugin`, `compiler svelte in your head` and so on,very intrested! expect more about babel/vite/svelte. btw, also follow you in bilibili🤣, so there is nothing better than you sharing more Chinese videos
@loia5tqd0012 жыл бұрын
So an underrated video.
@loia5tqd0012 жыл бұрын
I guess the code that caused the deoptimization was something like const { Text, Paragraph } = Typography; Is it 😅? If not, should we write that way anyway Li Hau?
@lihautan2 жыл бұрын
Yea it was caused by import * as Typography from '...' const { Text, Paragraph } = Typography Instead if you do import * as Typography from '...' const Text = Typography.Text const Paragraph = Typography.Paragraph It works. So a workaround is I wrote a babel plugin to do just this transformation and keep other destructuring intact for modern build.
@ofeenee2 жыл бұрын
Can you please do a video on sveltekit’s new form actions api? 🙏
@lihautan2 жыл бұрын
i think this one from scott is amazing: kzbin.info/www/bejne/n2bdlaGsbZigrrs i will need sometime to read through the docs and digest and figure out sveltekit :)