Earlier quoted context omitted.
why are you assuming that a major release breaks compatibility?
That’s what semantic versioning is: https://semver.org/ https://docs.npmjs.com/about-semantic-versioning
Vite 3.0
61–70 of 202 posts
Re: Vite 3.0
#62Earlier quoted context omitted.
Parcel has been praised on here many times when it originally came out. I was an avid user but the nail in the coffin was the horrid and long release of v2 which took forever, the docs were in disarray, and overall just left a bad taste in my mouth. I also think there was some common issue where v1 didn’t support some version of postcss for quite some time and I and many others jumped ship to vite.
Agree with this strongly. Also, it's great to have a zero-config tool like Parcel, but it needs to have a path from zero-config to "some config" as your project grows. I found this very difficult and jumped to Vite.
Re: Vite 3.0
#63Re: Vite 3.0
#64Would love to hear the comparison between snowpack and this.
Snowpack is no longer maintained, and the people previously working on it are now developing an SSG tool based on Vite. Source: https://vitejs.dev/guide/comparisons.html#snowpack
Re: Vite 3.0
#65Quoted post unavailable.
2. Nobody forces you to upgrade, that's how semver works.
Re: Vite 3.0
#66I know that this is all about Vite but if you like Vite, I want to give a shout-out to Parcel[0] as well. Its a very similar philosophy, built on top of SWC[1] and has its own set of great optimizations. I've regularly gotten smaller overall bundle sizes with parcel than with Vite (though that gap is very narrow now) in my experience. I wish Parcel got more mention, especially in the React community (where it shines…
Re: Vite 3.0
#67I tried using ESBuild directly for a small web app and it seems pretty nice. What would using Vite on top of it give me?
Re: Vite 3.0
#68Re: Vite 3.0
#69I know that this is all about Vite but if you like Vite, I want to give a shout-out to Parcel[0] as well. Its a very similar philosophy, built on top of SWC[1] and has its own set of great optimizations. I've regularly gotten smaller overall bundle sizes with parcel than with Vite (though that gap is very narrow now) in my experience. I wish Parcel got more mention, especially in the React community (where it shines…
Parcel has been praised on here many times when it originally came out. I was an avid user but the nail in the coffin was the horrid and long release of v2 which took forever, the docs were in disarray, and overall just left a bad taste in my mouth. I also think there was some common issue where v1 didn’t support some version of postcss for quite some time and I and many others jumped ship to vite.
Re: Vite 3.0
#70I tried using ESBuild directly for a small web app and it seems pretty nice. What would using Vite on top of it give me?
I think of Vite as a bundle of esbuild and other tools glued together nicely into one thing which can manage your entire project.