Skip to content

Commit 19a286e

Browse files
committed
Merge branch 'master' into bump-deps
2 parents 6d180b8 + 2019f45 commit 19a286e

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
wasm_opt = "version_125"

tools/build-examples/src/bin/update-wasm-opt.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ fn main() -> ExitCode {
3131
continue;
3232
}
3333

34+
// Skip hidden directories (e.g., .cargo)
35+
let file_name = entry.file_name();
36+
if file_name.to_string_lossy().starts_with('.') {
37+
continue;
38+
}
39+
3440
let example = path
3541
.file_name()
3642
.expect("Failed to get directory name")

website/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)