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
7 changes: 5 additions & 2 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.5/schema.json",
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
"changelog": [
"@svitejs/changesets-changelog-github-compact",
{ "repo": "bluwy/whyframe" }
Expand All @@ -10,5 +10,8 @@
"linked": [],
"baseBranch": "master",
"updateInternalDependencies": "minor",
"ignore": []
"ignore": [],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
}
9 changes: 9 additions & 0 deletions .changeset/mean-rockets-slide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@whyframe/svelte': minor
'@whyframe/astro': minor
'@whyframe/core': minor
'@whyframe/jsx': minor
'@whyframe/vue': minor
---

Support Vite v7 and v8, and update plugin hooks with filters for faster performance in rolldown
5 changes: 5 additions & 0 deletions .changeset/sharp-teams-strive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@whyframe/svelte': patch
---

Known issue: mdsvex does not work well with this plugin and vite-plugin-svelte v7
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dist
.next
.nuxt
.svelte-kit
.vitepress
out
build

Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"shiki": "3.12.2",
"svelte": "^5.38.10",
"svelte": "^5.53.12",
"vite-plugin-cloudflare-redirect": "^1.0.2",
"vite-plugin-inspect": "^11.3.3"
}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/components/demos/AstroDemo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import astroDark from '@/assets/astro-dark.svg'
---

<iframe data-why title="Package demo">
<p> <img src={whyframe.src} alt="whyframe" height="80" /> <span>+</span> <picture>
<source srcset={astroLight.src} media="(prefers-color-scheme: light)" /> <img
src={astroDark.src} alt="astro" height="64" /> </picture> </p>
<p> <img src={whyframe.src} alt="whyframe" height="80" /> <span>+</span>
<picture> <source srcset={astroLight.src} media="(prefers-color-scheme:
light)" /> <img src={astroDark.src} alt="astro" height="64" /> </picture> </p>
</iframe>

<style>
Expand Down
2 changes: 1 addition & 1 deletion jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Node16",
"checkJs": true,
"allowJs": true,
"noEmit": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.38.10",
"svelte": "^5.53.12",
"uvu": "^0.5.6"
},
"packageManager": "pnpm@10.16.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"peerDependencies": {
"@whyframe/core": "^0.1.14",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
"vite": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"@astrojs/compiler": "^1.8.2",
Expand All @@ -41,6 +41,6 @@
},
"devDependencies": {
"@whyframe/core": "workspace:*",
"vite": "^7.1.5"
"vite": "^8.0.0"
}
}
Loading
Loading