useNewTransformation Feedback Thread
See original GitHub issueWe introduced a new transformation which powers the Svelte intellisense under the hood. The goal is to get rid of a tsx-style transformation and simplify transformations along the way.
Advantages for users:
- no messing with projects who use JSX for some other reason and then have conflicting JSX definitions (#1256, #1149)
- better type inference in some cases, for example around svelte:component
Internal advantages:
- TS control flow easier to keep flowing
- overall easier transformations of Svelte specific syntax like await, each etc.
You can try out the new transformation using
- “Svelte for VS Code” version 105.11.1 and setting
svelte.plugin.svelte.useNewTransformation
totrue
svelte-check
version 2.4.0 with the--use-new-transformation
flag.
Please provide feedback in here about any improvements or regressions.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:6
- Comments:37 (27 by maintainers)
Top Results From Across the Web
Why use Transform feedback? - OpenGL: Advanced Coding
Transform feedback is primarily used to retrieve values from vertex-transforming stages of the pipeline. There are a lot of use cases.
Read more >Thread Types - Informatica Documentation
Transformation threads process data according to the transformation logic in the mapping. The master thread creates transformation threads to transform data ...
Read more >Use Change forums to manage Business Transformations
Blog site: http://wahab.eu/r/change Do you remember the time when you were leading a series of projects and everything was perfect.
Read more >Leadership in Transformation Forums
Leadership in Transformation (LiT) Forums 2022-2023. Our Inaugural Year Has Begun! It is not too late to join us - registration is still...
Read more >Unofficial Feedback thread for the Vampire Lord Ult+ ...
Unofficial Feedback thread for the Vampire Lord Ult+ Revamped Vampire Skill ... I'd rather not HAVE to use the transform, hope its optional, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks @ignatiusmb, @rgossiaux and @kevin-legion for the feedback!
component: new ({target: any, props: any}) => YourComponent
orcomponent: typeof YourComponent
instead ofcomponent: YourComponent
)#each
bug should be fixedThanks @sw-yx and @ignatiusmb ! Both issues are hopefully fixed with the latest version.