Skip to content

Commit

Permalink
fix: the exclude path in file Cargo.toml of plugin template generat…
Browse files Browse the repository at this point in the history
…ed by cli
  • Loading branch information
wtto00 committed Dec 9, 2024
1 parent afad806 commit 953a32e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/fix-cli-plugin-path.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'tauri-cli': patch:bug
'@tauri-apps/cli': patch:bug
---

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)
2 changes: 1 addition & 1 deletion crates/tauri-cli/templates/plugin/Cargo.crate-manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [ "{{ author }}" ]
description = ""
edition = "2021"
rust-version = "1.77.2"
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]
links = "tauri-plugin-{{ plugin_name }}"

[dependencies]
Expand Down

0 comments on commit 953a32e

Please sign in to comment.