Releases: amrbashir/vite-plugin-tauri
Releases · amrbashir/vite-plugin-tauri
v4.0.0
- Add support for Tauri v2.
- Parse Tauri CLI arguments from
process.argv
so now you could pass -- -t/--tauri <tauri-cli-argument>
.
- Breaking change: Removed
debug
, verbose
, and target
config options, instead, you should pass these options as Tauri CLI arguments.
v3.3.0
- Add option to build with verbose logging
- Fix regression in
3.2.0
where dev
was always built with --release
flag and devtools were inaccessible.
v3.2.0
- Add option to specify the rust build target
v3.0.2
What's Changed
- Removed internal modification of vite config to disable
clearScreen
and server.open
and delegate it to the user.
- Removed
kolorist
dependency to reduce package size
v3.0.1
What's Changed
- Fix passing
debug
option to tauri cli in build mode.
v3.0.0
What's Changed
- Refactored the plugin to be a proper Vite plugin. Consult README.md for how to use it.
v2.3.0
What's Changed
- Auto-fill
beforeDevCommand
and beforeBuildCommand
when initializing the tauri project.
v2.2.0
What's Changed
- Update
vite
peerDependency to >= 2
which adds vite@3 support