Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions .changeset/marko-e2e-consolidation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
'@tanstack/marko-virtual': patch
---

Stop publishing the tags build's incremental state: `marko-type-check` writes
`dist/tsconfig.tags.tsbuildinfo`, which the `files` field shipped to npm and nx
cached as part of `dist`. Because `@marko/type-check` always runs incrementally, a
`dist` that carried that file but not `dist/tags` (which `marko.json` points at)
made every subsequent build a silent no-op — exit 0, nothing emitted — and any
consumer then failed to compile with
`ENOENT: no such file or directory, scandir '.../dist/tags'`. The build now removes
the file after emitting, so a build always produces `dist/tags`.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@ vite.config.ts.timestamp-*
test-results/
playwright-report/
*.log
**/*.tsbuildinfo
**/*.tsbuildinfo

# Marko Run generated route types
.marko-run/
82 changes: 0 additions & 82 deletions examples/marko/chat-pretext/.marko-run/routes.d.ts

This file was deleted.

17 changes: 0 additions & 17 deletions examples/marko/chat-pretext/e2e/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions examples/marko/chat-pretext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"dev": "marko-run dev",
"build": "marko-run build",
"preview": "marko-run preview",
"test:e2e": "playwright test",
"test:types": "marko-type-check"
},
"dependencies": {
Expand All @@ -18,7 +17,6 @@
"devDependencies": {
"@marko/language-tools": "^2.6.2",
"@marko/type-check": "3.1.1",
"@playwright/test": "^1.53.1",
"typescript": "5.9.3",
"vite": "^6.4.2"
}
Expand Down
31 changes: 0 additions & 31 deletions examples/marko/chat-pretext/playwright.config.ts

This file was deleted.

2 changes: 0 additions & 2 deletions examples/marko/chat-pretext/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
},
"include": [
"src",
"e2e",
"playwright.config.ts",
"vite.config.ts",
"../../../packages/marko-virtual/src/tags/**/*"
]
Expand Down
82 changes: 0 additions & 82 deletions examples/marko/chat/.marko-run/routes.d.ts

This file was deleted.

14 changes: 0 additions & 14 deletions examples/marko/chat/e2e/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions examples/marko/chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"dev": "marko-run dev",
"build": "marko-run build",
"preview": "marko-run preview",
"test:e2e": "playwright test",
"test:types": "marko-type-check"
},
"dependencies": {
Expand All @@ -17,7 +16,6 @@
"devDependencies": {
"@marko/language-tools": "^2.6.2",
"@marko/type-check": "3.1.1",
"@playwright/test": "^1.53.1",
"typescript": "5.9.3",
"vite": "^6.4.2"
}
Expand Down
31 changes: 0 additions & 31 deletions examples/marko/chat/playwright.config.ts

This file was deleted.

2 changes: 0 additions & 2 deletions examples/marko/chat/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
},
"include": [
"src",
"e2e",
"playwright.config.ts",
"vite.config.ts",
"../../../packages/marko-virtual/src/tags/**/*"
]
Expand Down
53 changes: 0 additions & 53 deletions examples/marko/dynamic/.marko-run/routes.d.ts

This file was deleted.

Loading
Loading