Skip to content

Commit

Permalink
release: v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Oct 1, 2022
1 parent 8a8769e commit 9ea5f3b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [3.0.1](https://github.com/amrbashir/vite-plugin-tauri/compare/v3.0.2...v3.0.1) (2022-10-1)

### 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.

# [3.0.1](https://github.com/amrbashir/vite-plugin-tauri/compare/v3.0.1...v3.0.0) (2022-10-1)

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion example/vite.config.tauri.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig(
clearScreen: false,
server: {
open: false,
}
},
})
)
);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-tauri",
"version": "3.0.1",
"version": "3.0.2",
"description": "Integrate Tauri in a Vite project to build cross-platform apps.",
"repository": "https://github.com/amrbashir/vite-plugin-tauri.git",
"author": "Amr Bashir <amr.bashir2015@gmail.com>",
Expand Down
6 changes: 0 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export function getPackageJson(): { name: string } {
return JSON.parse(readFileSync("package.json", "utf8"));
}

const GREEN = "\x1b[32m"
const BOLD = "\x1b[1m"
const GREEN = "\x1b[32m";
const BOLD = "\x1b[1m";
const DIM = "\x1b[2m";
const RESET = "\x1b[0m";

Expand Down

0 comments on commit 9ea5f3b

Please sign in to comment.