diff --git a/.editorconfig b/.editorconfig index b3b76ccfbd7b..0a8a1cb73a68 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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] diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 6192ab97d2ef..f010e48359ae 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -45,9 +45,10 @@ "getrandom", "rand", // Needs to be updated manually - "wasm-bindgen-cli" - ] - }, + "wasm-bindgen-cli", + "wasm-bindgen" + ] + }, { "groupName": "@biomejs packages", "matchFileNames": [ diff --git a/crates/biome_wasm/Cargo.toml b/crates/biome_wasm/Cargo.toml index 0ec2cd866f2c..dde83b571289 100644 --- a/crates/biome_wasm/Cargo.toml +++ b/crates/biome_wasm/Cargo.toml @@ -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 }