Skip to content

Commit a017a5b

Browse files
committed
fix: add dev:prepare step to release workflow for tsconfig generation
The release workflow was failing because tsconfig.json extends .nuxt/tsconfig.json which only exists after running dev:prepare. This is standard for Nuxt modules using @nuxt/module-builder (confirmed by checking nuxt-modules/tailwindcss). Authored by: Aaron Lippold<lippold@gmail.com>
1 parent 06f9da5 commit a017a5b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- name: Install dependencies
3232
run: pnpm install --frozen-lockfile
3333

34+
- name: Prepare development environment
35+
run: pnpm dev:prepare
36+
3437
- name: Build module
3538
run: pnpm prepack
3639

0 commit comments

Comments
 (0)