Skip to content

Commit

Permalink
chore(deps) Update Tauri CLI (1.x) (#8229)
Browse files Browse the repository at this point in the history
* chore(deps) Update Tauri CLI

* fix build

* fix msrv

* update lockfile

* revert api test

* lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <[email protected]>
  • Loading branch information
renovate[bot] and lucasfernog authored Aug 12, 2024
1 parent 297cd55 commit 60f7443
Show file tree
Hide file tree
Showing 9 changed files with 321 additions and 514 deletions.
4 changes: 2 additions & 2 deletions core/tauri-utils/src/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ pub fn inline_isolation(document: &mut NodeRef, dir: &Path) {
let src = {
let attributes = script.attributes.borrow();
attributes
.get(LocalName::from("src"))
.get("src")
.expect("script with src attribute has no src value")
.to_string()
};
Expand All @@ -282,7 +282,7 @@ pub fn inline_isolation(document: &mut NodeRef, dir: &Path) {
script.as_node().append(NodeRef::new_text(file));

let mut attributes = script.attributes.borrow_mut();
attributes.remove(LocalName::from("src"));
attributes.remove("src");
}
}

Expand Down
110 changes: 40 additions & 70 deletions examples/api/src-tauri/Cargo.lock

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

Loading

0 comments on commit 60f7443

Please sign in to comment.