Releases: preactjs/preset-vite
Releases · preactjs/preset-vite
2.1.1
- Fix compatibility with vite
>=2.5
2.1.0
Features
- Add readable hook names in dev mode (#10, thanks @marvinhagemeister)
Bug Fixes
- Do not return code from transform when not transforming (#9, thanks @piotr-cz)
- Switch to vite's built-in normalizePath (#8, thanks @marvinhagemeister)
2.0.1
Bug Fixes
- Fix "incorrect sourcemap" error (#9, thanks @piotr-cz)
- Switch to vite's built-in normalizePath (#8, thanks @marvinhagemeister)
2.0.0
Releasing this preset to the public sparked a discussion on how presets should be done in vite in general. It turns out that plugins can be an array of plugins and that this is the intended approach moving forward. Since this project is very new it was deemed better to do this breaking change now, rather than later when the userbase will be significantly larger.
To update change your vite configuration from wrapping your config:
import withPreact from "@preact/preset-vite";
export default withPreact({
// Your vite config
});
..to moving it to the plugin array:
import { defineConfig } from "vite";
import preact from "@preact/preset-vite";
export default defineConfig({
plugins: [preact()]
});
Breaking
- Switch from config factory function to array of plugins (#5, thanks @marvinhagemeister)
Bug Fixes
- Fix
preact/debug
not being injected on windows (#7, thanks @marvinhagemeister)
1.0.1
Bug Fixes
- Improve main entry detection logic (#3, thanks @marvinhagemeister)
Maintenance
- Add devtools to vite logs (#2, thanks @marvinhagemeister)
- Add
export default
to doc code snippets inREADME.md
(#1, thanks @deleonio)