Skip to content

Commit d0e52ce

Browse files
committed
Update deps and fix most warnings
1 parent 378a295 commit d0e52ce

File tree

4 files changed

+1377
-951
lines changed

4 files changed

+1377
-951
lines changed

blog/boa-release-21/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ grew from 40.67% to ~97%.
3838

3939
The implementation is backed by the `temporal_rs` date/time Rust
4040
library, which we went over briefly in our June
41-
[blog post](./2025-06-15-temporal-impl-1.md) with hopefully another post
41+
[blog post](../2025-06-15-temporal-impl-1.md) with hopefully another post
4242
in the not too distant future. So far, `temporal_rs` has also been used in
4343
both V8 and Keisel to implement Temporal.
4444

@@ -143,7 +143,7 @@ against the Web Platform Tests (WPT).
143143
### NaN Boxing
144144

145145
With this release, Boa's `JsValue` will use nan-boxing by default. The NaN boxing of `JsValue`
146-
increased memory and runtime performance over the older enum.
146+
increased memory and runtime performance over the older enum.
147147

148148
As a note, the current implementation is not compatible with all platforms. While we hope
149149
to address this in the future. The legacy enum JsValue will be available via the `jsvalue-enum`

docusaurus.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const config: Config = {
2323
projectName: "boa-dev.github.io",
2424

2525
onBrokenLinks: "throw",
26-
onBrokenMarkdownLinks: "warn",
2726

2827
// Even if you don't use internalization, you can use this field to set useful
2928
// metadata like html lang. For example, if your site is Chinese, you may want
@@ -53,6 +52,9 @@ const config: Config = {
5352

5453
markdown: {
5554
mermaid: true,
55+
hooks: {
56+
onBrokenMarkdownLinks: "warn"
57+
}
5658
},
5759
themes: ["@docusaurus/theme-mermaid"],
5860

0 commit comments

Comments
 (0)