Skip to content

Commit 4923414

Browse files
committed
oxlint JS plugins blog post
1 parent 1c6b6b2 commit 4923414

File tree

5 files changed

+369
-4
lines changed

5 files changed

+369
-4
lines changed

.vitepress/config/en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const enConfig = defineLocaleConfig("root", {
2323
{
2424
text: "Resources",
2525
items: [
26-
{ text: "Blog", link: "/blog/2025-08-17-oxlint-type-aware" },
26+
{ text: "Blog", link: "/blog/2025-10-09-oxlint-js-plugins" },
2727
{ text: "Team", link: "/team" },
2828
{ text: "Branding", link: "/branding" },
2929
{ text: "Website GitHub", link: "https://github.com/oxc-project/oxc-project.github.io" },

.vitepress/config/inlined-scripts/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
}
77
};
88

9-
window.__OXC_BANNER_ID__ = "/blog/2025-08-17-oxlint-type-aware";
9+
window.__OXC_BANNER_ID__ = "/blog/2025-10-09-oxlint-js-plugins";
1010
restore(`oxc-banner-dismissed-${__OXC_BANNER_ID__}`, "banner-dismissed");
1111
})();

.vitepress/sidebar.blog.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
[
2+
{
3+
"text": "Oxlint JS Plugins Preview",
4+
"link": "/blog/2025-10-09-oxlint-js-plugins"
5+
},
26
{
37
"text": "Oxlint Type-Aware Preview",
48
"link": "/blog/2025-08-17-oxlint-type-aware"

.vitepress/theme/components/Banner.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const hide = () => {
1717
};
1818
1919
// Sync with inlined-scripts/banner.js
20-
const slug = "/blog/2025-08-17-oxlint-type-aware";
20+
const slug = "/blog/2025-10-09-oxlint-js-plugins";
2121
2222
const bannerDismissed = useLocalStorage<boolean>(`oxc-banner-dismissed-${slug}`, false);
2323
@@ -46,7 +46,7 @@ const dismiss = () => {
4646

4747
<template>
4848
<div ref="el" class="banner banner-dismissed">
49-
<div class="text"><a :href="slug">Announcing Oxlint Type-Aware Preview</a> 🎉</div>
49+
<div class="text"><a :href="slug">Announcing Oxlint JS Plugins Preview</a> 🎉</div>
5050

5151
<button type="button" @click="dismiss">
5252
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">

0 commit comments

Comments
 (0)