Skip to content
Open
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: 8 additions & 1 deletion .github/workflows/test-vp-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,14 @@ jobs:
- name: monorepo
create-args: vite:monorepo --directory test-project
template-args: ''
verify-command: vp run ready
# The trailing check pins the dts deliverable: the utils library
# builds with `vp pack` and TypeScript 7, so a green `vp run ready`
# alone could still ship a type-less package if declaration
# generation is silently skipped. tsdown emits `index.d.mts` next
# to the ESM bundle.
verify-command: |
vp run ready
test -f packages/utils/dist/index.d.mts
verify-migration: 'false'
- name: application
create-args: vite:application --directory test-project
Expand Down
Loading