Skip to content

Commit 0ae06c5

Browse files
authored
fix: the exclude path in file Cargo.toml of plugin template generated by cli (#11914)
1 parent afad806 commit 0ae06c5

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

.changes/fix-cli-plugin-path.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'tauri-cli': patch:bug
3+
'@tauri-apps/cli': patch:bug
4+
---
5+
6+
Fix the exclude path in file `Cargo.toml` of plugin template generated by cli. Path changed in [#9346](https://github.com/tauri-apps/tauri/pull/9346)

Cargo.lock

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

crates/tauri-cli/templates/plugin/Cargo.crate-manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [ "{{ author }}" ]
55
description = ""
66
edition = "2021"
77
rust-version = "1.77.2"
8-
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
8+
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]
99
links = "tauri-plugin-{{ plugin_name }}"
1010

1111
[dependencies]

0 commit comments

Comments
 (0)