Skip to content

Releases: amrbashir/vite-plugin-tauri

v4.0.0

23 Feb 04:37
aa115f9
Compare
Choose a tag to compare
  • 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

07 May 15:09
9eabeac
Compare
Choose a tag to compare
  • 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

07 May 14:51
40770c2
Compare
Choose a tag to compare
  • Add option to specify the rust build target

v3.1.0

05 May 01:47
f90a865
Compare
Choose a tag to compare

What's Changed

  • Updated dependencies

v3.1.0

15 Jan 03:08
127e440
Compare
Choose a tag to compare

What's Changed

  • Add a default export to the plugin which allows two styles of importing:

    • Named export (current):
      import { tauri } from "vite-plugin-tauri"
    • Default export (new):
      import tauri from "vite-plugin-tauri"
  • Detect Tauri.toml file when detecting if there is a Tauri project is initialized or not.

v3.0.2

01 Oct 22:42
9ea5f3b
Compare
Choose a tag to compare

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

01 Oct 21:23
d7cebfe
Compare
Choose a tag to compare

What's Changed

  • Fix passing debug option to tauri cli in build mode.

v3.0.0

01 Oct 21:14
687c315
Compare
Choose a tag to compare

What's Changed

  • Refactored the plugin to be a proper Vite plugin. Consult README.md for how to use it.

v2.3.0

26 Sep 14:58
6d89b8e
Compare
Choose a tag to compare

What's Changed

  • Auto-fill beforeDevCommand and beforeBuildCommand when initializing the tauri project.

v2.2.0

24 Jul 00:37
bb56506
Compare
Choose a tag to compare

What's Changed

  • Update vite peerDependency to >= 2 which adds vite@3 support