Skip to content
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ad1266b
feat(integration): switch long-running test apps from dev to build+serve
jacekradko Feb 6, 2026
f15afe6
fix(e2e): fix template build scripts for build+serve mode
jacekradko Feb 6, 2026
00f15ca
fix(e2e): add node adapter to astro-hybrid template for build mode
jacekradko Feb 6, 2026
8ee0693
fix(e2e): assign serve result to outer-scoped variables in longRunnin…
jacekradko Feb 6, 2026
689f475
fix(e2e): use @astrojs/node@8 for astro-hybrid template (astro 4 compat)
jacekradko Feb 6, 2026
f18383e
fix(e2e): add debug logging to long-running app init, remove tsc from…
jacekradko Feb 7, 2026
0378aff
fix(e2e): add build timeout and cap serve polling attempts
jacekradko Feb 7, 2026
ba2ebe6
fix(e2e): add serve log file dump on polling failure for debugging
jacekradko Feb 7, 2026
d8d3001
fix(e2e): add lsof/ps debugging when serve polling fails
jacekradko Feb 7, 2026
7917eea
fix(e2e): check serve process liveness and port binding after 3s
jacekradko Feb 7, 2026
be51c2e
fix(e2e): better serve debug: lsof port check, pstree, 10s wait
jacekradko Feb 7, 2026
d963ae6
Merge remote-tracking branch 'origin/main' into jr/integration-build-…
jacekradko Feb 7, 2026
0c9111d
style: format application.ts
jacekradko Feb 7, 2026
33c0699
refactor(e2e): remove debug instrumentation from serve()
jacekradko Feb 7, 2026
a963ee2
fix(e2e): fix serverUrl port detection using URL constructor
jacekradko Feb 7, 2026
1eaf924
fix(e2e): fix production serve commands for tanstack-start and react-…
jacekradko Feb 8, 2026
5516aa4
fix(e2e): correct tanstack-start production entry to dist/server/serv…
jacekradko Feb 8, 2026
74ba697
fix(e2e): use srvx to serve tanstack-start production build
jacekradko Feb 8, 2026
0f3475d
style: format tanstack-start package.json
jacekradko Feb 8, 2026
7cc55ae
fix(integration): fix srvx static path resolution for tanstack-start
jacekradko Feb 8, 2026
978e231
fix(integration): pass .env vars to serve process
jacekradko Feb 8, 2026
dcec915
Merge branch 'main' into jr/integration-build-serve
jacekradko Feb 9, 2026
b9571bf
Merge branch 'main' into jr/integration-build-serve
jacekradko Feb 9, 2026
11395e2
Merge branch 'main' into jr/integration-build-serve
jacekradko Feb 10, 2026
2fb8426
Merge branch 'main' into jr/integration-build-serve
jacekradko Feb 10, 2026
0407556
Merge branch 'main' into jr/integration-build-serve
jacekradko Feb 11, 2026
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
Prev Previous commit
Next Next commit
fix(e2e): use @astrojs/node@8 for astro-hybrid template (astro 4 compat)
  • Loading branch information
jacekradko committed Feb 6, 2026
commit 689f475eb6e96072282add271b15cebe32ca0a71
2 changes: 1 addition & 1 deletion integration/templates/astro-hybrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^9.4.2",
"@astrojs/node": "^8.0.0",
"@astrojs/react": "^3.6.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
Expand Down
Loading