Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ indent_size = 2

# YAML doesn't support hard tabs 🙃
# Templates that will be weird with hard tabs in the website editor
[{**.yml,**.md,**.rs,**.mdx,justfile,**.json}]
[{**.yml,**.md,**.rs,**.mdx,justfile,**.json,**.jsonc,**.json5}]
indent_style = space

[*.rs]
Expand Down
7 changes: 4 additions & 3 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@
"getrandom",
"rand",
// Needs to be updated manually
"wasm-bindgen-cli"
]
},
"wasm-bindgen-cli",
"wasm-bindgen"
]
},
{
"groupName": "@biomejs packages",
"matchFileNames": [
Expand Down
2 changes: 1 addition & 1 deletion crates/biome_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
serde-wasm-bindgen = "0.6.5"
# IMPORTANT: if you update this package, you must update justfile and workflows so we install the same CLI version
wasm-bindgen = { version = "0.2.106", features = ["serde-serialize"] }
wasm-bindgen = { version = "=0.2.106", features = ["serde-serialize"] }

[build-dependencies]
biome_js_factory = { workspace = true }
Expand Down