Skip to content
Open
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
9 changes: 9 additions & 0 deletions .changeset/breezy-horses-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@marko/run": minor
"@marko/run-adapter-netlify": patch
"@marko/run-adapter-static": patch
"@marko/run-adapter-node": patch
"@marko/run-explorer": patch
---

Vite 8 support
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
run: npm i npm@11.6.0 -g && npm ci
- name: Build
run: npm run @ci:build
- name: Lint Code
Expand All @@ -44,7 +44,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
run: npm i npm@11.6.0 -g && npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run tests
Expand All @@ -70,7 +70,7 @@ jobs:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
run: npm i npm@11.6.0 -g && npm ci
- name: Release
id: changesets
uses: changesets/action@v1
Expand Down
8 changes: 4 additions & 4 deletions examples/netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"preview": "marko-run preview"
},
"dependencies": {
"marko": "^5.38.2"
"marko": "^5.38.34"
},
"devDependencies": {
"@marko/run": "^0.9.6",
"@marko/run-adapter-netlify": "^3.0.2",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.1",
"prettier": "^3.7.4",
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.2.7"
"vite": "^8.0.3"
}
}
8 changes: 4 additions & 4 deletions examples/node-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"dependencies": {
"compression": "^1.8.1",
"express": "^4.21.1",
"marko": "^5.38.2"
"marko": "^5.38.34"
},
"devDependencies": {
"@marko/run": "^0.9.6",
"@marko/run-adapter-node": "^2.0.4",
"@types/node": "^25.0.1",
"prettier": "^3.7.4",
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7"
"vite": "^8.0.3"
}
}
8 changes: 4 additions & 4 deletions examples/static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"preview": "marko-run preview"
},
"dependencies": {
"marko": "^5.38.2"
"marko": "^5.38.34"
},
"devDependencies": {
"@marko/run": "^0.9.6",
"@marko/run-adapter-static": "^2.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.1",
"prettier": "^3.7.4",
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7"
"vite": "^8.0.3"
}
}
2 changes: 1 addition & 1 deletion examples/zero-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"preview": "marko-run preview"
},
"dependencies": {
"marko": "^5.38.2"
"marko": "^5.38.34"
}
}
Loading
Loading