Skip to content

Commit 9ea5f3b

Browse files
committed
release: v3.0.2
1 parent 8a8769e commit 9ea5f3b

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [3.0.1](https://github.com/amrbashir/vite-plugin-tauri/compare/v3.0.2...v3.0.1) (2022-10-1)
2+
3+
### What's Changed
4+
5+
* Removed internal modification of vite config to disable `clearScreen` and `server.open` and delegate it to the user.
6+
* Removed `kolorist` dependency to reduce package size.
7+
18
# [3.0.1](https://github.com/amrbashir/vite-plugin-tauri/compare/v3.0.1...v3.0.0) (2022-10-1)
29

310
### What's Changed

example/vite.config.tauri.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineConfig(
1111
clearScreen: false,
1212
server: {
1313
open: false,
14-
}
14+
},
1515
})
1616
)
1717
);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-tauri",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Integrate Tauri in a Vite project to build cross-platform apps.",
55
"repository": "https://github.com/amrbashir/vite-plugin-tauri.git",
66
"author": "Amr Bashir <[email protected]>",

pnpm-lock.yaml

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export function getPackageJson(): { name: string } {
1818
return JSON.parse(readFileSync("package.json", "utf8"));
1919
}
2020

21-
const GREEN = "\x1b[32m"
22-
const BOLD = "\x1b[1m"
21+
const GREEN = "\x1b[32m";
22+
const BOLD = "\x1b[1m";
2323
const DIM = "\x1b[2m";
2424
const RESET = "\x1b[0m";
2525

0 commit comments

Comments
 (0)